Commit a20e13b

mokhan <mokhan@ce5e1baf-6525-42e4-a1b2-857ea38da20a>
2009-03-06 16:33:08
renamed default namespace and assembly name.
git-svn-id: https://svn.xp-dev.com/svn/mokhan-mo.money@54 ce5e1baf-6525-42e4-a1b2-857ea38da20a
1 parent 24051f4
Changed files (394)
trunk
build
product
MyMoney
DataAccess
Domain
Infrastructure
cloning
Container
debugging
eventing
Extensions
interceptors
Logging
registries
System
Threading
transactions
Presentation
Context
Core
Databindings
Model
Presenters
billing
Commands
excel
income
Menu
Navigation
reporting
Shell
Startup
updates
Resources
Views
Properties
Tasks
Testing
Utility
windows.ui
trunk/build/local.properties.xml.template
@@ -9,7 +9,7 @@
   
 	<property name="dot.net.sdk.dir" value="C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin" />
 	<property name="framework.dir" value="c:\windows\microsoft.net\framework\v3.5" />
-	<property name="deployment.url" value="http://mokhan.ca/mymoney/" />
+	<property name="deployment.url" value="http://mokhan.ca/MoMoney/" />
   
 	<property name="certificate.filename" value="${build.config.dir}\mokhan.pfx" />
 	<property name="certificate.password" value="" />
trunk/build/local_properties.ps1.template
@@ -9,7 +9,7 @@ $local_settings = @{
   
 	dot_net_sdk_dir = "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin"
 	framework_dir = "c:\windows\microsoft.net\framework\v3.5"
-	deployment_url = "http://mokhan.ca/mymoney/"
+	deployment_url = "http://mokhan.ca/MoMoney/"
   
 	certificate_filename = "$build_config_dir\mokhan.pfx"
 	certificate_password = "" 
trunk/build/project.build
@@ -37,7 +37,7 @@
 				<include name="${build.config.dir}\**\*.cs" />
 				<exclude name="${product.dir}\**\AssemblyInfo.cs" />
 				<exclude name="${product.dir}\**\*Specs.cs" />
-				<exclude name="${product.dir}\mymoney\Testing\**\*.*" />
+				<exclude name="${product.dir}\MoMoney\Testing\**\*.*" />
 			</sources>			
 			<references>
 				<include name="${build.lib.dir}\app\**\*.dll" />
trunk/build/project.deploy.build
@@ -1,5 +1,5 @@
 ๏ปฟ<?xml version="1.0" encoding="utf-8" ?>
-	<project name="project.deployment">
+<project name="project.deployment">
 	<property name="assembly.config" value="${build.config.dir}\AssemblyInfo.cs" />
 
 	<property name="log4net.config" value="${build.config.dir}\log4net.config.xml" />
trunk/build/project.ps1
@@ -1,5 +1,5 @@
 properties{#directories
-	$project_name = "mymoney"
+	$project_name = "MoMoney"
 	$base_dir = new-object System.IO.DirectoryInfo $pwd
 	$base_dir = $base_dir.Parent.FullName
 	
trunk/build/project_deploy.ps1
@@ -9,3 +9,11 @@ task copy_app_dependencies {
 task create_licenses -depends clean {
 
 }
+
+task deploy {
+
+}
+
+task run -depends deploy {
+
+}
trunk/product/MyMoney/DataAccess/db40/spiking/db40_spike_specs.cs
@@ -2,12 +2,12 @@ using System.Collections.Generic;
 using System.IO;
 using Db4objects.Db4o;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.DataAccess.db40.spiking
+namespace MoMoney.DataAccess.db40.spiking
 {
     [Concern(typeof (Db4oFactory))]
     public class when_opening_an_existing_database_ : concerns_for
@@ -17,8 +17,8 @@ namespace MyMoney.DataAccess.db40.spiking
         context c = () =>
                         {
                             original = new TestObject(88, "mo");
-                                             the_database_file = Path.GetTempFileName();
-                                             database = Db4oFactory.OpenFile(the_database_file);
+                            the_database_file = Path.GetTempFileName();
+                            database = Db4oFactory.OpenFile(the_database_file);
                         };
 
         because b = () =>
trunk/product/MyMoney/DataAccess/db40/ConnectionFactory.cs
@@ -1,14 +1,16 @@
 using Db4objects.Db4o;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Presentation.Model.Projects;
+using JetBrains.Annotations;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Presentation.Model.Projects;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     public interface IConnectionFactory
     {
         IObjectContainer open_connection_to(IFile the_path_to_the_database_file);
     }
 
+    [UsedImplicitly]
     public class ConnectionFactory : IConnectionFactory
     {
         public IObjectContainer open_connection_to(IFile the_path_to_the_database_file)
trunk/product/MyMoney/DataAccess/db40/DatabaseConfiguration.cs
@@ -1,8 +1,8 @@
 using System.IO;
 using Castle.Core;
-using MyMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Model.Projects;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     public interface IDatabaseConfiguration
     {
trunk/product/MyMoney/DataAccess/db40/ObjectRepository.cs
@@ -1,11 +1,11 @@
 using System.Collections.Generic;
 using System.Linq;
 using Db4objects.Db4o;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     public class ObjectRepository : IRepository
     {
trunk/product/MyMoney/DataAccess/db40/ObjectRepositorySpecs.cs
@@ -1,12 +1,12 @@
 using System.Collections.Generic;
 using Db4objects.Db4o;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     [Concern(typeof (ObjectRepository))]
     public abstract class behaves_like_a_object_repository : concerns_for<IRepository, ObjectRepository>
trunk/product/MyMoney/DataAccess/db40/SessionFactory.cs
@@ -1,7 +1,8 @@
 using Db4objects.Db4o;
-using MyMoney.Utility.Core;
+using MoMoney.DataAccess.db40;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     public interface ISessionFactory : IFactory<IObjectContainer>
     {
trunk/product/MyMoney/DataAccess/db40/SessionFactorySpecs.cs
@@ -1,11 +1,12 @@
 using Db4objects.Db4o;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.DataAccess.db40;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.DataAccess.db40
+namespace MoMoney.DataAccess.db40
 {
     [Concern(typeof (SessionFactory))]
     public abstract class behaves_like_a_session_factory : concerns_for<ISessionFactory, SessionFactory>
trunk/product/MyMoney/DataAccess/repositories/bill_repository_specs.cs
@@ -1,12 +1,12 @@
 using System;
 using System.Collections.Generic;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.DataAccess.repositories
+namespace MoMoney.DataAccess.repositories
 {
     public class when_loading_all_the_bills_from_the_repository : behaves_like_a_repository
     {
trunk/product/MyMoney/DataAccess/sqlcompact/sql_compant_repository_specs.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.DataAccess.sqlcompact
+namespace MoMoney.DataAccess.sqlcompact
 {
     public class sql_compant_repository_specs
     {}
trunk/product/MyMoney/Domain/accounting/billing/Bill.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public interface IBill : IEntity
     {
trunk/product/MyMoney/Domain/accounting/billing/billing_extensions.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public static class billing_extensions
     {
trunk/product/MyMoney/Domain/accounting/billing/BillSpecs.cs
@@ -1,11 +1,11 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     [Concern(typeof (Bill))]
     public class when_checking_to_see_if_a_new_bill_has_been_paid_for : concerns_for<IBill>
trunk/product/MyMoney/Domain/accounting/billing/Company.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public interface ICompany : IEntity
     {
trunk/product/MyMoney/Domain/accounting/billing/company_specs.cs
@@ -1,12 +1,12 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     [Concern(typeof (Company))]
     public abstract class behaves_like_a_company : concerns_for<ICompany>
trunk/product/MyMoney/Domain/accounting/billing/IEmployee.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public interface IEmployee
     {}
trunk/product/MyMoney/Domain/accounting/billing/ILedgerEntry.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public interface ILedgerEntry
     {
trunk/product/MyMoney/Domain/accounting/billing/Payment.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Domain.Core;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     public interface IPayment : IEntity
     {
trunk/product/MyMoney/Domain/accounting/billing/total_payments_calculator.cs
@@ -1,7 +1,7 @@
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Core;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Domain.accounting.billing
+namespace MoMoney.Domain.accounting.billing
 {
     internal class total_payments_calculator : IValueReturningVisitor<IMoney, IPayment>
     {
trunk/product/MyMoney/Domain/accounting/financial_growth/income.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Domain.accounting.financial_growth
+namespace MoMoney.Domain.accounting.financial_growth
 {
     public interface IIncome : IEntity
     {
trunk/product/MyMoney/Domain/accounting/financial_growth/income_extensions.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Domain.accounting.financial_growth
+namespace MoMoney.Domain.accounting.financial_growth
 {
     public static class income_extensions
     {
trunk/product/MyMoney/Domain/accounting/AccountHolder.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.accounting
+namespace MoMoney.Domain.accounting
 {
     public interface IAccountHolder : IEntity
     {
trunk/product/MyMoney/Domain/accounting/AccountHolderSpecs.cs
@@ -1,14 +1,14 @@
 using System;
 using System.Collections.Generic;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.accounting
+namespace MoMoney.Domain.accounting
 {
     [Concern(typeof (AccountHolder))]
     public abstract class behaves_like_an_account_holder : concerns_for<IAccountHolder, AccountHolder>
trunk/product/MyMoney/Domain/accounting/GeneralLedger.cs
@@ -1,10 +1,10 @@
 using System;
 using System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.accounting
+namespace MoMoney.Domain.accounting
 {
     public interface IGeneralLedger
     {
trunk/product/MyMoney/Domain/accounting/GeneralLedgerSpecs.cs
@@ -1,14 +1,14 @@
 using System;
 using System.Collections.Generic;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
-
-namespace MyMoney.Domain.accounting
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
+
+namespace MoMoney.Domain.accounting
 {
     [Concern(typeof (GeneralLedger))]
     public abstract class behaves_like_a_general_ledger : concerns_for<IGeneralLedger, GeneralLedger>
trunk/product/MyMoney/Domain/accounting/IInvoice.cs
@@ -1,6 +1,6 @@
-using MyMoney.Domain.Core;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Domain.accounting
+namespace MoMoney.Domain.accounting
 {
     public interface IInvoice
     {
trunk/product/MyMoney/Domain/Core/Clock.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public static class Clock
     {
trunk/product/MyMoney/Domain/Core/date.cs
@@ -1,8 +1,8 @@
 using System;
 using System.Globalization;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IDate : IComparable<IDate>, IComparable, IEquatable<IDate>
     {
trunk/product/MyMoney/Domain/Core/date_extensions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public static class date_extensions
     {
trunk/product/MyMoney/Domain/Core/date_specs.cs
@@ -1,9 +1,9 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     [Concern(typeof (Date))]
     public class when_two_dates_that_represent_the_same_day_are_asked_if_they_are_equal : concerns_for<IDate>
trunk/product/MyMoney/Domain/Core/day.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IDay
     {
trunk/product/MyMoney/Domain/Core/Entity.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Infrastructure.transactions;
+using MoMoney.Infrastructure.transactions;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IEntity
     {
trunk/product/MyMoney/Domain/Core/IRegistry.cs
@@ -1,6 +1,6 @@
 using System.Collections.Generic;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IRegistry<T>
     {
trunk/product/MyMoney/Domain/Core/IRepository.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Infrastructure.Logging;
+using MoMoney.Infrastructure.Logging;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IRepository : ILoggable
     {
trunk/product/MyMoney/Domain/Core/IYear.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IYear
     {
trunk/product/MyMoney/Domain/Core/Money.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IMoney : IEquatable<IMoney>
     {
trunk/product/MyMoney/Domain/Core/money_extensions.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public static class money_extensions
     {
trunk/product/MyMoney/Domain/Core/money_extensions_specs.cs
@@ -1,8 +1,8 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public class when_converting_a_valid_amount_to_a_money : concerns_for
     {
trunk/product/MyMoney/Domain/Core/MoneySpecs.cs
@@ -1,9 +1,9 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     [Concern(typeof (Money))]
     public class when_adding_two_monies_together : concerns_for<IMoney>
trunk/product/MyMoney/Domain/Core/Month.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IMonth
     {
trunk/product/MyMoney/Domain/Core/Months.cs
@@ -2,7 +2,7 @@ using System;
 using System.Collections.Generic;
 using System.Linq;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public static class Months
     {
trunk/product/MyMoney/Domain/Core/range.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public interface IRange<T> where T : IComparable
     {
trunk/product/MyMoney/Domain/Core/range_specs.cs
@@ -1,9 +1,9 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     [Concern(typeof (range<int>))]
     public abstract class behaves_like_a_range_from_1_to_10 : concerns_for<IRange<int>>
trunk/product/MyMoney/Domain/Core/registry_extensions.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Domain.Core
+namespace MoMoney.Domain.Core
 {
     public static class registry_extensions
     {
trunk/product/MyMoney/Domain/repositories/company_repository_extensions.cs
@@ -1,9 +1,9 @@
 using System.Linq;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Logging;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Logging;
 
-namespace MyMoney.Domain.repositories
+namespace MoMoney.Domain.repositories
 {
     public static class company_repository_extensions
     {
trunk/product/MyMoney/Infrastructure/cloning/BinarySerializer.cs
@@ -1,6 +1,6 @@
 using System.Runtime.Serialization.Formatters.Binary;
 
-namespace MyMoney.Infrastructure.cloning
+namespace MoMoney.Infrastructure.cloning
 {
     public class BinarySerializer<T> : Serializer<T>
     {
trunk/product/MyMoney/Infrastructure/cloning/BinarySerializerSpecs.cs
@@ -2,11 +2,11 @@ using System;
 using System.IO;
 using jpboodhoo.bdd.contexts;
 using MbUnit.Framework;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.cloning
+namespace MoMoney.Infrastructure.cloning
 {
     [Concern(typeof(BinarySerializer<TestItem>))]
     public abstract class behaves_like_serializer : concerns_for<ISerializer<TestItem>>
trunk/product/MyMoney/Infrastructure/cloning/ISerializer.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.cloning
+namespace MoMoney.Infrastructure.cloning
 {
     public interface ISerializer<T> : IDisposable
     {
trunk/product/MyMoney/Infrastructure/cloning/Prototype.cs
@@ -1,6 +1,6 @@
 using System.IO;
 
-namespace MyMoney.Infrastructure.cloning
+namespace MoMoney.Infrastructure.cloning
 {
     public interface IPrototype
     {
trunk/product/MyMoney/Infrastructure/cloning/Serializer.cs
@@ -1,7 +1,7 @@
 using System.IO;
 using System.Runtime.Serialization;
 
-namespace MyMoney.Infrastructure.cloning
+namespace MoMoney.Infrastructure.cloning
 {
     public class Serializer<T> : ISerializer<T>
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/ApplyLoggingInterceptor.cs
@@ -1,9 +1,9 @@
 using Castle.Core;
 using Castle.MicroKernel.Registration;
-using MyMoney.Infrastructure.interceptors;
-using MyMoney.Infrastructure.Logging;
+using MoMoney.Infrastructure.interceptors;
+using MoMoney.Infrastructure.Logging;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class ApplyLoggingInterceptor : IRegistrationConfiguration
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/ComponentExclusionSpecification.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class ComponentExclusionSpecification : IComponentExclusionSpecification
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/ComponentRegistrationConfiguration.cs
@@ -1,8 +1,8 @@
 using Castle.MicroKernel.Registration;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public interface IRegistrationConfiguration : IConfiguration<ComponentRegistration>
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/ConfigureComponentLifestyle.cs
@@ -1,7 +1,7 @@
 using Castle.Core;
 using Castle.MicroKernel.Registration;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class ConfigureComponentLifestyle : IRegistrationConfiguration
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/IComponentExclusionSpecification.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public interface IComponentExclusionSpecification : ISpecification<Type>
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/ImplementationOfDependencyRegistry.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class ImplementationOfDependencyRegistry : IComponentExclusionSpecification
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/LogComponent.cs
@@ -1,7 +1,7 @@
 using Castle.MicroKernel.Registration;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class LogComponent : IRegistrationConfiguration
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/NoInterfaces.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class NoInterfaces : IComponentExclusionSpecification
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/RegisterComponentContract.cs
@@ -1,6 +1,6 @@
 using Castle.MicroKernel.Registration;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class RegisterComponentContract : IRegistrationConfiguration
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/configuration/SubclassesForm.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Windows.Forms;
 
-namespace MyMoney.Infrastructure.Container.Windsor.configuration
+namespace MoMoney.Infrastructure.Container.Windsor.configuration
 {
     public class SubclassesForm : IComponentExclusionSpecification
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/windsor_dependency_registry.cs
@@ -2,9 +2,9 @@ using System;
 using System.Collections.Generic;
 using Castle.Core;
 using Castle.Windsor;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.Container.Windsor
+namespace MoMoney.Infrastructure.Container.Windsor
 {
     public class windsor_dependency_registry : IDependencyRegistry
     {
trunk/product/MyMoney/Infrastructure/Container/Windsor/windsor_dependency_registry_specs.cs
@@ -1,11 +1,11 @@
 using Castle.Core;
 using Castle.Windsor;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.Container.Windsor
+namespace MoMoney.Infrastructure.Container.Windsor
 {
     [Concern(typeof (windsor_dependency_registry))]
     public class when_registering_a_singleton_component_with_the_windsor_container : concerns_for<IDependencyRegistry>
trunk/product/MyMoney/Infrastructure/Container/Windsor/WindsorContainerFactory.cs
@@ -1,9 +1,9 @@
 using Castle.MicroKernel.Registration;
 using Castle.Windsor;
-using MyMoney.Infrastructure.Container.Windsor.configuration;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container.Windsor.configuration;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Container.Windsor
+namespace MoMoney.Infrastructure.Container.Windsor
 {
     public interface IWindsorContainerFactory : IFactory<IWindsorContainer>
     {
trunk/product/MyMoney/Infrastructure/Container/dependency_resolution_exception.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.Container
+namespace MoMoney.Infrastructure.Container
 {
     public class dependency_resolution_exception<T> : Exception
     {
trunk/product/MyMoney/Infrastructure/Container/IDependencyRegistry.cs
@@ -1,6 +1,6 @@
 using System.Collections.Generic;
 
-namespace MyMoney.Infrastructure.Container
+namespace MoMoney.Infrastructure.Container
 {
     public interface IDependencyRegistry
     {
trunk/product/MyMoney/Infrastructure/Container/Resolve.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Container
+namespace MoMoney.Infrastructure.Container
 {
     public static class resolve
     {
trunk/product/MyMoney/Infrastructure/Container/ResolveSpecs.cs
@@ -1,13 +1,13 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Core;
-using MyMoney.Testing;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
-
-namespace MyMoney.Infrastructure.Container
+using MoMoney.Presentation.Core;
+using MoMoney.Testing;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
+
+namespace MoMoney.Infrastructure.Container
 {
     [Concern(typeof (resolve))]
     public abstract class behaves_like_a_inversion_of_control_container : concerns_for
trunk/product/MyMoney/Infrastructure/debugging/Launch.cs
@@ -1,6 +1,6 @@
 using System.Diagnostics;
 
-namespace MyMoney.Infrastructure.debugging
+namespace MoMoney.Infrastructure.debugging
 {
     public static class Launch
     {
trunk/product/MyMoney/Infrastructure/eventing/event_aggregator.cs
@@ -1,9 +1,9 @@
 using System.Collections.Generic;
 using System.Linq;
 using Castle.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.eventing
+namespace MoMoney.Infrastructure.eventing
 {
     public interface IEventAggregator
     {
trunk/product/MyMoney/Infrastructure/eventing/IEvent.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Infrastructure.eventing
+namespace MoMoney.Infrastructure.eventing
 {
     public interface IEvent
     {
trunk/product/MyMoney/Infrastructure/eventing/IEventSubscriber.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Infrastructure.eventing
+namespace MoMoney.Infrastructure.eventing
 {
     public interface IEventSubscriber<Event> where Event : IEvent
     {
trunk/product/MyMoney/Infrastructure/Extensions/environment_extensions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Extensions
+namespace MoMoney.Infrastructure.Extensions
 {
     public static class environment_extensions
     {
trunk/product/MyMoney/Infrastructure/Extensions/logging_extensions.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Infrastructure.Logging;
+using MoMoney.Infrastructure.Logging;
 
-namespace MyMoney.Infrastructure.Extensions
+namespace MoMoney.Infrastructure.Extensions
 {
     public static class logging_extensions
     {
trunk/product/MyMoney/Infrastructure/Extensions/threading_extensions.cs
@@ -1,7 +1,7 @@
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Extensions
+namespace MoMoney.Infrastructure.Extensions
 {
     public static class threading_extensions
     {
trunk/product/MyMoney/Infrastructure/interceptors/Lazy.cs
@@ -1,10 +1,10 @@
 using System;
 using Castle.Core.Interceptor;
 using Castle.DynamicProxy;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Utility.Extensions;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     public static class lazy
     {
trunk/product/MyMoney/Infrastructure/interceptors/lazy_loaded_interceptor.cs
@@ -1,7 +1,7 @@
 using System;
 using Castle.Core.Interceptor;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     internal class lazy_loaded_interceptor<T> : IInterceptor
     {
trunk/product/MyMoney/Infrastructure/interceptors/lazy_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     [Concern(typeof (lazy))]
     public abstract class behaves_like_a_lazy_loaded_object : concerns_for
trunk/product/MyMoney/Infrastructure/interceptors/logging_interceptor.cs
@@ -1,8 +1,8 @@
 using System.Diagnostics;
 using Castle.Core.Interceptor;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     public interface ILoggingInterceptor : IInterceptor
     {}
trunk/product/MyMoney/Infrastructure/interceptors/raise_event_interceptor.cs
@@ -1,7 +1,7 @@
 using Castle.Core.Interceptor;
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     public interface IRaiseEventInterceptor<Event> : IInterceptor where Event : IEvent, new()
     {}
trunk/product/MyMoney/Infrastructure/interceptors/UnitOfWorkInterceptor.cs
@@ -1,9 +1,9 @@
 using Castle.Core.Interceptor;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.transactions;
-using MyMoney.Presentation.Model.messages;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.transactions;
+using MoMoney.Presentation.Model.messages;
 
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     public interface IUnitOfWorkInterceptor : IInterceptor
     {
trunk/product/MyMoney/Infrastructure/interceptors/UnitOfWorkInterceptorSpecs.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Infrastructure.interceptors
+namespace MoMoney.Infrastructure.interceptors
 {
     public class UnitOfWorkInterceptorSpecs
     {
trunk/product/MyMoney/Infrastructure/Logging/ConsoleLogging/console_logger.cs
@@ -1,7 +1,7 @@
 using System;
 using System.IO;
 
-namespace MyMoney.Infrastructure.Logging.ConsoleLogging
+namespace MoMoney.Infrastructure.Logging.ConsoleLogging
 {
     public class console_logger : ILogger
     {
trunk/product/MyMoney/Infrastructure/Logging/Log4NetLogging/log4net_log_factory.cs
@@ -2,9 +2,9 @@ using System;
 using System.IO;
 using log4net;
 using log4net.Config;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Infrastructure.Logging.Log4NetLogging
+namespace MoMoney.Infrastructure.Logging.Log4NetLogging
 {
     public class log4net_log_factory : ILogFactory
     {
trunk/product/MyMoney/Infrastructure/Logging/Log4NetLogging/log4net_logger.cs
@@ -1,7 +1,7 @@
 using System;
 using log4net;
 
-namespace MyMoney.Infrastructure.Logging.Log4NetLogging
+namespace MoMoney.Infrastructure.Logging.Log4NetLogging
 {
     public class log4net_logger : ILogger
     {
trunk/product/MyMoney/Infrastructure/Logging/ILogFactory.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Logging
+namespace MoMoney.Infrastructure.Logging
 {
     public interface ILogFactory
     {
trunk/product/MyMoney/Infrastructure/Logging/ILoggable.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Infrastructure.Logging
+namespace MoMoney.Infrastructure.Logging
 {
     public interface ILoggable
     {
trunk/product/MyMoney/Infrastructure/Logging/ILogger.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Infrastructure.Logging
+namespace MoMoney.Infrastructure.Logging
 {
     public interface ILogger
     {
trunk/product/MyMoney/Infrastructure/Logging/Log.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Infrastructure.Logging.ConsoleLogging;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.Logging.ConsoleLogging;
 
-namespace MyMoney.Infrastructure.Logging
+namespace MoMoney.Infrastructure.Logging
 {
     public static class Log
     {
trunk/product/MyMoney/Infrastructure/Logging/LogSpecs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Infrastructure.Logging
+namespace MoMoney.Infrastructure.Logging
 {
     [Concern(typeof (Log))]
     public class when_creating_a_logger_for_a_particular_type_ : concerns_for
trunk/product/MyMoney/Infrastructure/registries/default_registry.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Container;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Container;
 
-namespace MyMoney.Infrastructure.registries
+namespace MoMoney.Infrastructure.registries
 {
     public class default_registry<T> : IRegistry<T>
     {
trunk/product/MyMoney/Infrastructure/registries/default_registry_specs.cs
@@ -1,12 +1,12 @@
 using System.Collections.Generic;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.registries
+namespace MoMoney.Infrastructure.registries
 {
     [Concern(typeof (default_registry<int>))]
     public class when_retrieving_all_the_items_from_the_default_repository :
trunk/product/MyMoney/Infrastructure/System/application_environment.cs
@@ -1,6 +1,6 @@
 using System.Windows.Forms;
 
-namespace MyMoney.Infrastructure.System
+namespace MoMoney.Infrastructure.System
 {
     public interface IApplicationEnvironment
     {
trunk/product/MyMoney/Infrastructure/Threading/BackgroundThread.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface IBackgroundThread : IDisposableCommand
     {
trunk/product/MyMoney/Infrastructure/Threading/BackgroundThreadFactory.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface IBackgroundThreadFactory
     {
trunk/product/MyMoney/Infrastructure/Threading/BackgroundThreadFactorySpecs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     [Concern(typeof (BackgroundThreadFactory))]
     public abstract class behaves_like_a_background_thread_factory : concerns_for<IBackgroundThreadFactory, BackgroundThreadFactory>
trunk/product/MyMoney/Infrastructure/Threading/BackgroundThreadSpecs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Core;
 using Rhino.Mocks;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     [Concern(typeof (BackgroundThread))]
     public abstract class behaves_like_a_background_thread : concerns_for<IBackgroundThread, BackgroundThread>
trunk/product/MyMoney/Infrastructure/Threading/CommandProcessor.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface ICommandProcessor : ICommand
     {
trunk/product/MyMoney/Infrastructure/Threading/CommandProcessorSpecs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     [Concern(typeof (CommandProcessor))]
     public abstract class behaves_like_a_command_processor : concerns_for<ICommandProcessor, CommandProcessor>
trunk/product/MyMoney/Infrastructure/Threading/IntervalTimer.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
 using System.Timers;
 using Castle.Core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface ITimer
     {
trunk/product/MyMoney/Infrastructure/Threading/IntervalTimerSpecs.cs
@@ -1,12 +1,12 @@
 using System;
 using System.Timers;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 using Rhino.Mocks;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     [Concern(typeof (IntervalTimer))]
     public abstract class behaves_like_an_interval_timer : concerns_for<ITimer, IntervalTimer>
trunk/product/MyMoney/Infrastructure/Threading/ITimerClient.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface ITimerClient
     {
trunk/product/MyMoney/Infrastructure/Threading/TimerFactory.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Timers;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface ITimerFactory
     {
trunk/product/MyMoney/Infrastructure/Threading/TimerFactorySpecs.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Timers;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     [Concern(typeof (TimerFactory))]
     public abstract class behaves_like_a_timer_factory : concerns_for<ITimerFactory, TimerFactory>
trunk/product/MyMoney/Infrastructure/Threading/WorkerThread.cs
@@ -1,7 +1,7 @@
 using System;
 using System.ComponentModel;
 
-namespace MyMoney.Infrastructure.Threading
+namespace MoMoney.Infrastructure.Threading
 {
     public interface IWorkerThread : IDisposable
     {
trunk/product/MyMoney/Infrastructure/transactions/IUnitOfWorkRegistrationFactory.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
 
 }
\ No newline at end of file
trunk/product/MyMoney/Infrastructure/transactions/NullUnitOfWork.cs
@@ -1,6 +1,6 @@
-using MyMoney.Domain.Core;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     internal class NullUnitOfWork<T> : IUnitOfWork<T> where T : IEntity
     {
trunk/product/MyMoney/Infrastructure/transactions/unit_of_work.cs
@@ -1,10 +1,10 @@
 using System;
 using System.Linq;
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public interface IUnitOfWork : IDisposable
     {
trunk/product/MyMoney/Infrastructure/transactions/unit_of_work_specs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     [Concern(typeof (unit_of_work<IEntity>))]
     public abstract class behaves_like_a_unit_of_work : concerns_for<IUnitOfWork<IEntity>, unit_of_work<IEntity>>
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWork.cs
@@ -1,7 +1,7 @@
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Container;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Container;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     static public class UnitOfWork
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkFactory.cs
@@ -1,7 +1,7 @@
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Container;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Container;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public interface IUnitOfWorkFactory
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkRegistration.cs
@@ -1,6 +1,6 @@
 using System.Reflection;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public interface IUnitOfWorkRegistration<T>
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkRegistrationFactory.cs
@@ -1,7 +1,7 @@
-using MyMoney.Infrastructure.cloning;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.cloning;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public interface IUnitOfWorkRegistrationFactory<T> : IMapper<T, IUnitOfWorkRegistration<T>>
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkRegistrationSpecs.cs
@@ -1,9 +1,9 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public abstract class behaves_like_unit_of_work_registration : concerns_for<IUnitOfWorkRegistration<Pillow>>
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkRegistry.cs
@@ -2,10 +2,10 @@ using System;
 using System.Linq;
 using System.Collections.Generic;
 using Castle.Core;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     public interface IUnitOfWorkRegistry : IDisposable
     {
trunk/product/MyMoney/Infrastructure/transactions/UnitOfWorkRegistrySpecs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Domain.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Infrastructure.transactions
+namespace MoMoney.Infrastructure.transactions
 {
     [Concern(typeof (UnitOfWorkRegistry))]
     public abstract class behaves_like_unit_of_work_registery : concerns_for<IUnitOfWorkRegistry,UnitOfWorkRegistry>
trunk/product/MyMoney/Presentation/Context/the_application_context.cs
@@ -1,10 +1,10 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Context
+namespace MoMoney.Presentation.Context
 {
     public class the_application_context : ApplicationContext
     {
trunk/product/MyMoney/Presentation/Context/the_application_context_specs.cs
@@ -1,15 +1,15 @@
 using System;
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 using Rhino.Mocks;
 
-namespace MyMoney.Presentation.Context
+namespace MoMoney.Presentation.Context
 {
     [Concern(typeof (the_application_context))]
     public abstract class behaves_like_an_application_context : concerns_for<ApplicationContext, the_application_context>
trunk/product/MyMoney/Presentation/Core/application_controller.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public interface IApplicationController : IParameterizedCommand<IPresenter>
     {
trunk/product/MyMoney/Presentation/Core/application_controller_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     [Concern(typeof (application_controller))]
     public abstract class behaves_like_an_application_controller : concerns_for<IApplicationController, application_controller>
trunk/product/MyMoney/Presentation/Core/could_not_find_presenter.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public class could_not_find_presenter<T> : Exception
     {
trunk/product/MyMoney/Presentation/Core/IContentPresenter.cs
@@ -1,6 +1,6 @@
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public interface IContentPresenter : IPresenter
     {
trunk/product/MyMoney/Presentation/Core/IPresentationModule.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public interface IPresentationModule : IPresenter
     {
trunk/product/MyMoney/Presentation/Core/IPresenter.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public interface IPresenter : ICommand
     {
trunk/product/MyMoney/Presentation/Core/presenter_registry_extensions.cs
@@ -1,10 +1,10 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using MyMoney.Domain.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public static class presenter_registry_extensions
     {
trunk/product/MyMoney/Presentation/Core/PresenterRegistry.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
+using MoMoney.Domain.Core;
 
-namespace MyMoney.Presentation.Core
+namespace MoMoney.Presentation.Core
 {
     public interface IPresenterRegistry : IRegistry<IPresenter>
     {
trunk/product/MyMoney/Presentation/Databindings/binding_selector.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Linq.Expressions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public interface IBindingSelector<TypeToBindTo>
     {
trunk/product/MyMoney/Presentation/Databindings/binding_selector_specs.cs
@@ -1,12 +1,12 @@
 using System;
 using System.Linq.Expressions;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (binding_selector<IAnInterface>))]
     public class when_selecting_a_property_as_the_target_of_a_binding : concerns_for<IBindingSelector<IAnInterface>>
trunk/product/MyMoney/Presentation/Databindings/combo_box_property_binding.cs
@@ -1,7 +1,7 @@
 using System.Windows.Forms;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public class combo_box_property_binding<TypeToBindTo, PropertyType> : IPropertyBinding<PropertyType>
     {
trunk/product/MyMoney/Presentation/Databindings/ComboBoxDataBindingSpecs.cs
@@ -1,11 +1,11 @@
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (Create))]
     public class when_binding_a_property_from_an_object_to_a_combo_box : concerns_for
trunk/product/MyMoney/Presentation/Databindings/control_binding_extensions.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public static class control_binding_extensions
     {
trunk/product/MyMoney/Presentation/Databindings/Create.cs
@@ -2,7 +2,7 @@ using System;
 using System.Linq.Expressions;
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public static class Create
     {
trunk/product/MyMoney/Presentation/Databindings/date_time_picker_property_binding.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public class date_time_picker_property_binding<TypeToBindTo> : IPropertyBinding<DateTime>
     {
trunk/product/MyMoney/Presentation/Databindings/date_time_property_binding_specs.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (Create))]
     public class when_a_new_date_is_selected_by_a_date_time_picker_that_is_bound_to_a_property : concerns_for
trunk/product/MyMoney/Presentation/Databindings/IPropertyBinding.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public interface IPropertyBinding<PropertyType>
     {
trunk/product/MyMoney/Presentation/Databindings/property_binder.cs
@@ -1,6 +1,6 @@
 using System.Reflection;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public interface IPropertyBinder<TypeToBindTo, PropertyType>
     {
trunk/product/MyMoney/Presentation/Databindings/property_binder_specs.cs
@@ -1,10 +1,10 @@
 using System.Reflection;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (property_binder<IAnInterface, string>))]
     public abstract class behaves_like_a_property_binder : concerns_for<IPropertyBinder<IAnInterface, string>, property_binder<IAnInterface, string>>
trunk/product/MyMoney/Presentation/Databindings/property_inspector.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Linq.Expressions;
 using System.Reflection;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public interface IPropertyInspector<TypeToBindTo, TypeOfProperty>
     {
trunk/product/MyMoney/Presentation/Databindings/property_inspector_factory.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public interface IPropertyInspectorFactory
     {
trunk/product/MyMoney/Presentation/Databindings/property_inspector_specs.cs
@@ -1,10 +1,10 @@
 using System.Reflection;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (property_inspector<IAnInterface, string>))]
     public class when_parsing_a_valie_expression_for_the_information_on_the_property :
trunk/product/MyMoney/Presentation/Databindings/text_property_binding.cs
@@ -1,8 +1,8 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     public class text_property_binding<TypeToBindTo, PropertyType> : IPropertyBinding<PropertyType>
     {
trunk/product/MyMoney/Presentation/Databindings/TextBoxDataBindingSpecs.cs
@@ -1,11 +1,11 @@
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Presentation.Databindings
+namespace MoMoney.Presentation.Databindings
 {
     [Concern(typeof (Create))]
     public class when_binding_a_property_on_an_object_to_a_textbox : concerns_for
trunk/product/MyMoney/Presentation/Model/file_system/folder.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Model.file_system
+namespace MoMoney.Presentation.Model.file_system
 {
     public interface IFolder
     {
trunk/product/MyMoney/Presentation/Model/interaction/INotification.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Model.interaction
+namespace MoMoney.Presentation.Model.interaction
 {
     public interface INotification
     {
trunk/product/MyMoney/Presentation/Model/interaction/notification_message.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Model.interaction
+namespace MoMoney.Presentation.Model.interaction
 {
     public class notification_message
     {
trunk/product/MyMoney/Presentation/Model/keyboard/shortcut_key.cs
@@ -1,6 +1,6 @@
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Model.keyboard
+namespace MoMoney.Presentation.Model.keyboard
 {
     public class shortcut_key
     {
trunk/product/MyMoney/Presentation/Model/keyboard/shortcut_keys.cs
@@ -1,6 +1,6 @@
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Model.keyboard
+namespace MoMoney.Presentation.Model.keyboard
 {
     public class shortcut_keys
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/close_project_command.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface ICloseCommand : ICommand, ISaveChangesCallback
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/close_window_command.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface ICloseWindowCommand : ICommand
     {}
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/exit_command_specs.cs
@@ -1,12 +1,12 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.System;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.System;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     [Concern(typeof (ExitCommand))]
     public abstract class behaves_like_exit_command : concerns_for<IExitCommand>
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/ExitCommand.cs
@@ -1,9 +1,9 @@
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.System;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.System;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface IExitCommand : ICommand, ISaveChangesCallback
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/new_command.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface INewCommand : ICommand, ISaveChangesCallback
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/new_command_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     [Concern(typeof (new_command))]
     public abstract class behaves_like_new_command : concerns_for<INewCommand, new_command>
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/open_command.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface IOpenCommand : ICommand, ISaveChangesCallback
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/open_command_specs.cs
@@ -1,12 +1,12 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     [Concern(typeof (open_command))]
     public abstract class behaves_like_command_to_open_a_project : concerns_for<IOpenCommand, open_command>
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/save_as_command.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface ISaveAsCommand : ICommand
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/save_as_command_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     [Concern(typeof (save_as_command))]
     public class when_saving_the_current_project_to_a_new_file_path : concerns_for<ISaveAsCommand, save_as_command>
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/save_command.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface ISaveCommand : ICommand
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/save_command_specs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     [Concern(typeof (save_command))]
     public abstract class behaves_like_the_save_command : concerns_for<ISaveCommand, save_command>
trunk/product/MyMoney/Presentation/Model/Menu/File/Commands/SaveChangesCommand.cs
@@ -1,10 +1,10 @@
 using System;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.File.Commands
+namespace MoMoney.Presentation.Model.Menu.File.Commands
 {
     public interface ISaveChangesCommand : IParameterizedCommand<ISaveChangesCallback>
     {
trunk/product/MyMoney/Presentation/Model/Menu/File/file_menu.cs
@@ -1,9 +1,9 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Model.keyboard;
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Model.keyboard;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Menu.File
+namespace MoMoney.Presentation.Model.Menu.File
 {
     public interface IFileMenu : ISubMenu
     {
trunk/product/MyMoney/Presentation/Model/Menu/Help/commands/display_information_about_the_application.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Presenters.Menu.Help;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters.Menu.Help;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu.Help.commands
+namespace MoMoney.Presentation.Model.Menu.Help.commands
 {
     public interface IDisplayInformationAboutTheApplication : ICommand
     {
trunk/product/MyMoney/Presentation/Model/Menu/Help/help_menu.cs
@@ -1,10 +1,10 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Model.Menu.Help.commands;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Presenters.updates;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Model.Menu.Help.commands;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters.updates;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Menu.Help
+namespace MoMoney.Presentation.Model.Menu.Help
 {
     public interface IHelpMenu : ISubMenu
     {
trunk/product/MyMoney/Presentation/Model/Menu/window/window_menu.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Model.Menu.File.Commands;
 
-namespace MyMoney.Presentation.Model.Menu.window
+namespace MoMoney.Presentation.Model.Menu.window
 {
     public interface IWindowMenu : ISubMenu
     {
trunk/product/MyMoney/Presentation/Model/Menu/create.cs
@@ -1,6 +1,6 @@
-using MyMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.Container;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public class create
     {
trunk/product/MyMoney/Presentation/Model/Menu/ISubMenu.cs
@@ -1,6 +1,6 @@
 using System.Collections.Generic;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public interface ISubMenu
     {
trunk/product/MyMoney/Presentation/Model/Menu/menu_item.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.keyboard;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Model.keyboard;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public interface IMenuItem
     {
trunk/product/MyMoney/Presentation/Model/Menu/menu_item_builder.cs
@@ -1,10 +1,10 @@
 using System;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Presentation.Model.keyboard;
-using MyMoney.Presentation.Resources;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Presentation.Model.keyboard;
+using MoMoney.Presentation.Resources;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public interface IMenuItemBuilder
     {
trunk/product/MyMoney/Presentation/Model/Menu/menu_item_separator.cs
@@ -1,6 +1,6 @@
 using System.Windows.Forms;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     internal class menu_item_separator : IMenuItem
     {
trunk/product/MyMoney/Presentation/Model/Menu/sub_menu_registry.cs
@@ -1,10 +1,10 @@
 using System.Collections.Generic;
-using MyMoney.Domain.Core;
-using MyMoney.Presentation.Model.Menu.File;
-using MyMoney.Presentation.Model.Menu.Help;
-using MyMoney.Presentation.Model.Menu.window;
+using MoMoney.Domain.Core;
+using MoMoney.Presentation.Model.Menu.File;
+using MoMoney.Presentation.Model.Menu.Help;
+using MoMoney.Presentation.Model.Menu.window;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public interface ISubMenuRegistry : IRegistry<ISubMenu>
     {}
trunk/product/MyMoney/Presentation/Model/Menu/tool_bar_item_builder.cs
@@ -1,9 +1,9 @@
 using System.Windows.Forms;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Presentation.Resources;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Presentation.Resources;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Menu
+namespace MoMoney.Presentation.Model.Menu
 {
     public interface IToolbarItemBuilder
     {
trunk/product/MyMoney/Presentation/Model/messages/closing_the_application.cs
@@ -1,6 +1,6 @@
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Presentation.Model.messages
+namespace MoMoney.Presentation.Model.messages
 {
     public class closing_the_application : IEvent
     {
trunk/product/MyMoney/Presentation/Model/messages/new_project_opened.cs
@@ -1,6 +1,6 @@
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Presentation.Model.messages
+namespace MoMoney.Presentation.Model.messages
 {
     public class new_project_opened : IEvent
     {
trunk/product/MyMoney/Presentation/Model/messages/saved_changes_event.cs
@@ -1,6 +1,6 @@
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Presentation.Model.messages
+namespace MoMoney.Presentation.Model.messages
 {
     public class saved_changes_event : IEvent
     {
trunk/product/MyMoney/Presentation/Model/messages/unhandled_error_occurred.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Presentation.Model.messages
+namespace MoMoney.Presentation.Model.messages
 {
     public class unhandled_error_occurred : IEvent
     {
trunk/product/MyMoney/Presentation/Model/messages/unsaved_changes_event.cs
@@ -1,6 +1,6 @@
-using MyMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.eventing;
 
-namespace MyMoney.Presentation.Model.messages
+namespace MoMoney.Presentation.Model.messages
 {
     public class unsaved_changes_event : IEvent
     {
trunk/product/MyMoney/Presentation/Model/Navigation/branches/add_bill_payment_branch.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters.billing;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.billing;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Navigation.branches
+namespace MoMoney.Presentation.Model.Navigation.branches
 {
     public class add_bill_payment_branch : IBranchVisitor
     {
trunk/product/MyMoney/Presentation/Model/Navigation/branches/add_new_bill_branch.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Navigation.branches
+namespace MoMoney.Presentation.Model.Navigation.branches
 {
     public class add_new_bill_branch : IBranchVisitor
     {
trunk/product/MyMoney/Presentation/Model/Navigation/branches/add_new_income_branch.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Resources;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Resources;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Navigation.branches
+namespace MoMoney.Presentation.Model.Navigation.branches
 {
     public class add_new_income_branch : IBranchVisitor
     {
trunk/product/MyMoney/Presentation/Model/Navigation/branches/view_all_bills_branch.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters.billing;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.billing;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Navigation.branches
+namespace MoMoney.Presentation.Model.Navigation.branches
 {
     public class view_all_bills_branch : IBranchVisitor
     {
trunk/product/MyMoney/Presentation/Model/Navigation/branches/view_all_bills_report_branch.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Presenters.reporting;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters.reporting;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Model.Navigation.branches
+namespace MoMoney.Presentation.Model.Navigation.branches
 {
     public class view_all_bills_report_branch : IBranchVisitor
     {
trunk/product/MyMoney/Presentation/Model/Navigation/IBranchVisitor.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     public interface IBranchVisitor : IVisitor<ITreeBranch>
     {}
trunk/product/MyMoney/Presentation/Model/Navigation/navigation_tree_visitor.cs
@@ -1,9 +1,9 @@
 using System.Windows.Forms;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     public interface INavigationTreeVisitor : IVisitor<TreeView>
     {}
trunk/product/MyMoney/Presentation/Model/Navigation/navigation_tree_visitor_specs.cs
@@ -1,11 +1,11 @@
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     [Concern(typeof (navigation_tree_visitor))]
     public abstract class behaves_like_a_navigation_tree_visitor :
trunk/product/MyMoney/Presentation/Model/Navigation/tree_branch.cs
@@ -1,9 +1,9 @@
 using System.Drawing;
 using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Resources;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     public interface ITreeBranch
     {
trunk/product/MyMoney/Presentation/Model/Navigation/tree_branch_specs.cs
@@ -1,12 +1,12 @@
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Core;
 using Rhino.Mocks;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     [Concern(typeof (tree_branch))]
     public abstract class behaves_like_a_tree_branch : concerns_for<ITreeBranch, tree_branch>
trunk/product/MyMoney/Presentation/Model/Navigation/tree_view_to_root_node_mapper.cs
@@ -1,7 +1,7 @@
 using System.Windows.Forms;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Model.Navigation
+namespace MoMoney.Presentation.Model.Navigation
 {
     public interface ITreeViewToRootNodeMapper : IMapper<TreeView, ITreeBranch>
     {}
trunk/product/MyMoney/Presentation/Model/Projects/current_project.cs
@@ -1,11 +1,11 @@
 using System.IO;
 using Castle.Core;
-using MyMoney.DataAccess.db40;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Utility.Extensions;
+using MoMoney.DataAccess.db40;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Model.Projects
+namespace MoMoney.Presentation.Model.Projects
 {
     public interface IProject : IEventSubscriber<unsaved_changes_event>
     {
trunk/product/MyMoney/Presentation/Model/Projects/current_project_specs.cs
@@ -1,14 +1,14 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.DataAccess.db40;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Testing;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Model.Projects
+using MoMoney.DataAccess.db40;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Testing;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Model.Projects
 {
     [Concern(typeof (current_project))]
     public abstract class behaves_like_a_project : concerns_for<IProject, current_project>
trunk/product/MyMoney/Presentation/Model/Projects/file.cs
@@ -1,8 +1,8 @@
 using System;
 using System.IO;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Presentation.Model.Projects
+namespace MoMoney.Presentation.Model.Projects
 {
     public interface IFile
     {
trunk/product/MyMoney/Presentation/Model/Projects/file_not_specified_exception.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Presentation.Model.Projects
+namespace MoMoney.Presentation.Model.Projects
 {
     public class file_not_specified_exception : Exception
     {}
trunk/product/MyMoney/Presentation/Model/reporting/IReport.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Model.reporting
+namespace MoMoney.Presentation.Model.reporting
 {
     public interface IReport
     {
trunk/product/MyMoney/Presentation/Model/reporting/report_binding_extensions.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Linq.Expressions;
 using DataDynamics.ActiveReports;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Model.reporting
+namespace MoMoney.Presentation.Model.reporting
 {
     public static class report_binding_extensions
     {
trunk/product/MyMoney/Presentation/Model/reporting/report_binding_extensions_specs.cs
@@ -1,11 +1,11 @@
 using System;
 using DataDynamics.ActiveReports;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Model.reporting
+namespace MoMoney.Presentation.Model.reporting
 {
     [Concern(typeof (report_binding_extensions))]
     public class when_binding_a_active_report_control_to_a_string_property_of_a_dto : concerns_for
trunk/product/MyMoney/Presentation/Model/updates/ApplicationVersion.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Presentation.Model.updates
+namespace MoMoney.Presentation.Model.updates
 {
     public class ApplicationVersion
     {
trunk/product/MyMoney/Presentation/Presenters/billing/dto/add_new_bill_dto.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Presentation.Presenters.billing.dto
+namespace MoMoney.Presentation.Presenters.billing.dto
 {
     public class add_new_bill_dto
     {
trunk/product/MyMoney/Presentation/Presenters/billing/dto/bill_information_dto.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Presentation.Presenters.billing.dto
+namespace MoMoney.Presentation.Presenters.billing.dto
 {
     public class bill_information_dto
     {
trunk/product/MyMoney/Presentation/Presenters/billing/dto/register_new_company.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.billing.dto
+namespace MoMoney.Presentation.Presenters.billing.dto
 {
     public class register_new_company
     {
trunk/product/MyMoney/Presentation/Presenters/billing/add_bill_payment_presenter.cs
@@ -1,12 +1,12 @@
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.billing;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.billing;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.billing
+namespace MoMoney.Presentation.Presenters.billing
 {
     public interface IAddBillPaymentPresenter : IContentPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/billing/view_all_bills_presenter.cs
@@ -1,11 +1,11 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.billing;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.billing;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.billing
+namespace MoMoney.Presentation.Presenters.billing
 {
     public interface IViewAllBillsPresenter : IContentPresenter
     {}
trunk/product/MyMoney/Presentation/Presenters/Commands/display_the_splash_screen.cs
@@ -1,9 +1,9 @@
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Presentation.Presenters.Startup;
-using MyMoney.Presentation.Views.Startup;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Presentation.Presenters.Startup;
+using MoMoney.Presentation.Views.Startup;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     public class display_the_splash_screen : IDisposableCommand
     {
trunk/product/MyMoney/Presentation/Presenters/Commands/LoadApplicationShell.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     public interface ILoadApplicationShellCommand : ICommand
     {
trunk/product/MyMoney/Presentation/Presenters/Commands/RestartCommand.cs
@@ -1,9 +1,9 @@
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.System;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.System;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     public interface IRestartCommand : ICommand
     {
trunk/product/MyMoney/Presentation/Presenters/Commands/run_presenter_command.cs
@@ -1,6 +1,6 @@
-using MyMoney.Presentation.Core;
+using MoMoney.Presentation.Core;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     public interface IRunPresenterCommand
     {
trunk/product/MyMoney/Presentation/Presenters/Commands/run_the.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     public interface IRunThe<Presenter> : ICommand where Presenter : IPresenter
     {}
trunk/product/MyMoney/Presentation/Presenters/Commands/run_the_specs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Core;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Core;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters.Commands
 {
     [Concern(typeof (run_the<>))]
     public class when_initializing_different_regions_of_the_user_interface : concerns_for<IRunThe<IPresenter>, run_the<IPresenter>>
trunk/product/MyMoney/Presentation/Presenters/excel/formatting/change_font_size.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.excel.formatting
+namespace MoMoney.Presentation.Presenters.excel.formatting
 {
     public class change_font_size : ICellVisitor
     {
trunk/product/MyMoney/Presentation/Presenters/excel/formatting/format_back_color.cs
@@ -1,6 +1,6 @@
 using System.Drawing;
 
-namespace MyMoney.Presentation.Presenters.excel.formatting
+namespace MoMoney.Presentation.Presenters.excel.formatting
 {
     public class format_back_color : ICellVisitor
     {
trunk/product/MyMoney/Presentation/Presenters/excel/Cell.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public class Cell
     {
trunk/product/MyMoney/Presentation/Presenters/excel/composite_cell_visitor.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public class composite_cell_visitor : ICellVisitor
     {
trunk/product/MyMoney/Presentation/Presenters/excel/constrained_cell_visitor.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public class constrained_cell_visitor : ICellVisitor
     {
trunk/product/MyMoney/Presentation/Presenters/excel/excel_usage.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Presenters.excel.formatting;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Presenters.excel.formatting;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public class excel_usage
     {
trunk/product/MyMoney/Presentation/Presenters/excel/ICell.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public interface ICell
     {
trunk/product/MyMoney/Presentation/Presenters/excel/ICellInterior.cs
@@ -1,6 +1,6 @@
 using System.Drawing;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public interface ICellInterior
     {
trunk/product/MyMoney/Presentation/Presenters/excel/ICellVisitor.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.excel
+namespace MoMoney.Presentation.Presenters.excel
 {
     public interface ICellVisitor : IVisitor<ICell>
     {
trunk/product/MyMoney/Presentation/Presenters/income/dto/income_information_dto.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.income.dto
+namespace MoMoney.Presentation.Presenters.income.dto
 {
     public class income_information_dto
     {
trunk/product/MyMoney/Presentation/Presenters/income/dto/income_submission_dto.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Domain.accounting.billing;
+using MoMoney.Domain.accounting.billing;
 
-namespace MyMoney.Presentation.Presenters.income.dto
+namespace MoMoney.Presentation.Presenters.income.dto
 {
     public class income_submission_dto
     {
trunk/product/MyMoney/Presentation/Presenters/income/dto/monthly_summary_dto.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.income.dto
+namespace MoMoney.Presentation.Presenters.income.dto
 {
     public class monthly_summary_dto
     {
trunk/product/MyMoney/Presentation/Presenters/income/add_new_income_presenter.cs
@@ -1,14 +1,14 @@
 using System.Linq;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.income;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.income;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.income
+namespace MoMoney.Presentation.Presenters.income
 {
     public interface IAddNewIncomePresenter : IContentPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/income/add_new_income_presenter_specs.cs
@@ -1,16 +1,16 @@
 using System.Collections.Generic;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.income;
-using MyMoney.Tasks.application;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Presenters.income
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.income;
+using MoMoney.Tasks.application;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Presenters.income
 {
     [Concern(typeof (add_new_income_presenter))]
     public abstract class behaves_like_add_new_income_presenter : concerns_for<IAddNewIncomePresenter, add_new_income_presenter>
trunk/product/MyMoney/Presentation/Presenters/income/view_income_history_presenter.cs
@@ -1,13 +1,13 @@
 using System.Linq;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.income;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.income;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.income
+namespace MoMoney.Presentation.Presenters.income
 {
     public interface IViewIncomeHistoryPresenter : IContentPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/Menu/Help/about_the_application_presenter.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Views.Menu.Help;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Views.Menu.Help;
 
-namespace MyMoney.Presentation.Presenters.Menu.Help
+namespace MoMoney.Presentation.Presenters.Menu.Help
 {
     public interface IAboutApplicationPresenter : IPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/Menu/Help/about_the_application_presenter_specs.cs
@@ -1,10 +1,10 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Views.Menu.Help;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Views.Menu.Help;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Menu.Help
+namespace MoMoney.Presentation.Presenters.Menu.Help
 {
     [Concern(typeof (about_the_application_presenter))]
     public abstract class behaves_like_the_application_information_presenter :
trunk/product/MyMoney/Presentation/Presenters/Menu/main_menu_presenter.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Views.Menu;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Views.Menu;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.Menu
+namespace MoMoney.Presentation.Presenters.Menu
 {
     public interface IMainMenuPresenter : IPresentationModule
     {
trunk/product/MyMoney/Presentation/Presenters/Menu/main_menu_presenter_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Views.Menu;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Views.Menu;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Menu
+namespace MoMoney.Presentation.Presenters.Menu
 {
     [Concern(typeof (main_menu_presenter))]
     public abstract class behaves_like_the_main_menu_presenter : concerns_for<IMainMenuPresenter, main_menu_presenter>
trunk/product/MyMoney/Presentation/Presenters/Navigation/AddBillingTaskPane.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Presenters.billing;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.billing;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Resources;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public class AddBillingTaskPane : IActionTaskPaneFactory
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/AddCompanyTaskPane.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Resources;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public class AddCompanyTaskPane : IActionTaskPaneFactory
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/AddIncomeTaskPane.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Presenters.income;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Resources;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public class AddIncomeTaskPane : IActionTaskPaneFactory
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/AddReportingTaskPane.cs
@@ -1,9 +1,9 @@
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Presenters.reporting;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters.reporting;
+using MoMoney.Presentation.Resources;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public class AddReportingTaskPane : IActionTaskPaneFactory
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/Build.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public class Build
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/ExpandoBuilder.cs
@@ -2,12 +2,12 @@ using System.Collections.Generic;
 using System.ComponentModel;
 using System.Drawing;
 using System.Windows.Forms;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 using XPExplorerBar;
 using Padding=System.Windows.Forms.Padding;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public interface IExpandoBuilder : IBuilder<Expando>
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/ExpandoItemBuilder.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Drawing;
 using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Resources;
+using MoMoney.Utility.Core;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public interface IExpandoItemBuilder : IBuilder<TaskItem>
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/IActionTaskPaneFactory.cs
@@ -1,7 +1,7 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public interface IActionTaskPaneFactory : IFactory<Expando>
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/MainMenuPresenter.cs
@@ -1,9 +1,9 @@
-using MyMoney.Domain.Core;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Views.Navigation;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Views.Navigation;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public interface IMainMenuPresenter : IPresentationModule
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/NavigationPresenter.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.Navigation;
-using MyMoney.Presentation.Views.Navigation;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.Navigation;
+using MoMoney.Presentation.Views.Navigation;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     public interface INavigationPresenter : IPresentationModule
     {
trunk/product/MyMoney/Presentation/Presenters/Navigation/NavigationPresenterSpecs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Navigation;
-using MyMoney.Presentation.Views.Navigation;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Navigation;
+using MoMoney.Presentation.Views.Navigation;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Navigation
+namespace MoMoney.Presentation.Presenters.Navigation
 {
     [Concern(typeof (NavigationPresenter))]
     public class when_building_the_navigation_tree : concerns_for<INavigationPresenter, NavigationPresenter>
trunk/product/MyMoney/Presentation/Presenters/reporting/report_presenter.cs
@@ -1,13 +1,13 @@
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.billing;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.reporting;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.billing;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.reporting;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.reporting
+namespace MoMoney.Presentation.Presenters.reporting
 {
     public interface IViewAllBillsReportPresenter : IContentPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/Shell/GettingStartedPresenter.cs
@@ -1,14 +1,16 @@
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Views.Shell;
+using JetBrains.Annotations;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface IGettingStartedPresenter : IPresentationModule, IEventSubscriber<new_project_opened>
     {
     }
 
+    [UsedImplicitly]
     public class GettingStartedPresenter : IGettingStartedPresenter
     {
         readonly IGettingStartedView view;
trunk/product/MyMoney/Presentation/Presenters/Shell/GettingStartedPresenterSpecs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public class GettingStartedPresenterSpecs
     {
trunk/product/MyMoney/Presentation/Presenters/Shell/LoadApplicationShellSpecs.cs
@@ -1,12 +1,12 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Presenters.Shell
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Presenters.Shell
 {
     [Concern(typeof (LoadApplicationShell))]
     public class when_loading_the_application_shell : concerns_for<ILoadApplicationShellCommand, LoadApplicationShell>
trunk/product/MyMoney/Presentation/Presenters/Shell/NotificationIconPresenter.cs
@@ -1,11 +1,11 @@
 using Castle.Core;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface INotificationIconPresenter : IPresentationModule,
                                                   IEventSubscriber<closing_the_application>,
trunk/product/MyMoney/Presentation/Presenters/Shell/NotificationIconPresenterSpecs.cs
@@ -1,12 +1,12 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     [Concern(typeof (NotificationIconPresenter))]
     public abstract class behaves_like_notification_icon_presenter : concerns_for<INotificationIconPresenter, NotificationIconPresenter>
trunk/product/MyMoney/Presentation/Presenters/Shell/StatusBarPresenter.cs
@@ -1,12 +1,12 @@
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface IStatusBarPresenter : IPresentationModule,
                                            IEventSubscriber<saved_changes_event>,
trunk/product/MyMoney/Presentation/Presenters/Shell/StatusBarPresenterSpecs.cs
@@ -1,13 +1,13 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     [Concern(typeof (StatusBarPresenter))]
     public class when_initializing_the_status_bar : concerns_for<IStatusBarPresenter, StatusBarPresenter>
trunk/product/MyMoney/Presentation/Presenters/Shell/TaskTrayPresenter.cs
@@ -1,10 +1,10 @@
 using Castle.Core;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface ITaskTrayPresenter : IPresentationModule,
                                           IEventSubscriber<saved_changes_event>,
trunk/product/MyMoney/Presentation/Presenters/Shell/TitleBarPresenter.cs
@@ -1,11 +1,11 @@
 using Castle.Core;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface ITitleBarPresenter : IPresentationModule,
                                           IEventSubscriber<unsaved_changes_event>,
trunk/product/MyMoney/Presentation/Presenters/Shell/TitleBarPresenterSpecs.cs
@@ -1,13 +1,13 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Model.Projects;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Presenters.Shell
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Presenters.Shell
 {
     [Concern(typeof (TitleBarPresenter))]
     public abstract class behaves_like_a_title_bar_presenter : concerns_for<ITitleBarPresenter, TitleBarPresenter>
trunk/product/MyMoney/Presentation/Presenters/Shell/ToolBarPresenter.cs
@@ -1,13 +1,13 @@
 using System.Collections.Generic;
 using System.Windows.Forms;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface IToolbarPresenter : IPresentationModule
     {
trunk/product/MyMoney/Presentation/Presenters/Shell/UnhandledErrorPresenter.cs
@@ -1,9 +1,9 @@
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public interface IUnhandledErrorPresenter : IPresentationModule, IEventSubscriber<unhandled_error_occurred>
     {
trunk/product/MyMoney/Presentation/Presenters/Shell/UnhandledErrorPresenterSpecs.cs
@@ -1,12 +1,12 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Shell
+namespace MoMoney.Presentation.Presenters.Shell
 {
     public class behaves_like_unhandled_error_presenter :
         concerns_for<IUnhandledErrorPresenter, UnhandledErrorPresenter>
trunk/product/MyMoney/Presentation/Presenters/Startup/display_the_splash_screen.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Presentation.Views.Startup;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Presentation.Views.Startup;
 
-namespace MyMoney.Presentation.Presenters.Startup
+namespace MoMoney.Presentation.Presenters.Startup
 {
     public class display_the_splash_screen : ISplashScreenState
     {
trunk/product/MyMoney/Presentation/Presenters/Startup/hide_the_splash_screen.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Presentation.Views.Startup;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Presentation.Views.Startup;
 
-namespace MyMoney.Presentation.Presenters.Startup
+namespace MoMoney.Presentation.Presenters.Startup
 {
     public class hide_the_splash_screen : ISplashScreenState
     {
trunk/product/MyMoney/Presentation/Presenters/Startup/ISplashScreenState.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Presenters.Startup
+namespace MoMoney.Presentation.Presenters.Startup
 {
     public interface ISplashScreenState
     {
trunk/product/MyMoney/Presentation/Presenters/Startup/SplashScreenPresenter.cs
@@ -1,8 +1,8 @@
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Presentation.Views.Startup;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Presentation.Views.Startup;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Presentation.Presenters.Startup
+namespace MoMoney.Presentation.Presenters.Startup
 {
     public interface ISplashScreenPresenter : IDisposableCommand, ITimerClient
     {
trunk/product/MyMoney/Presentation/Presenters/Startup/SplashScreenPresenterSpecs.cs
@@ -1,12 +1,12 @@
 using System;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Presentation.Views.Startup;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Presentation.Views.Startup;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Presenters.Startup
+namespace MoMoney.Presentation.Presenters.Startup
 {
     [Concern(typeof (SplashScreenPresenter))]
     public abstract class behaves_like_splash_screen_presenter : concerns_for<ISplashScreenPresenter, SplashScreenPresenter>
trunk/product/MyMoney/Presentation/Presenters/updates/CheckForUpdatesPresenter.cs
@@ -1,11 +1,10 @@
-using System;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.updates;
-using MyMoney.Tasks.infrastructure;
-using MyMoney.Utility.Core;
-
-namespace MyMoney.Presentation.Presenters.updates
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.updates;
+using MoMoney.Tasks.infrastructure;
+using MoMoney.Utility.Core;
+
+namespace MoMoney.Presentation.Presenters.updates
 {
     public interface ICheckForUpdatesPresenter : IPresenter, ICallback
     {
@@ -17,9 +16,9 @@ namespace MyMoney.Presentation.Presenters.updates
 
     public class CheckForUpdatesPresenter : ICheckForUpdatesPresenter
     {
-        private readonly ICheckForUpdatesView view;
-        private readonly IUpdateTasks tasks;
-        private readonly IRestartCommand command;
+        readonly ICheckForUpdatesView view;
+        readonly IUpdateTasks tasks;
+        readonly IRestartCommand command;
 
         public CheckForUpdatesPresenter(ICheckForUpdatesView view, IUpdateTasks tasks, IRestartCommand command)
         {
trunk/product/MyMoney/Presentation/Presenters/updates/CheckForUpdatesPresenterSpecs.cs
@@ -1,13 +1,13 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.updates;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Presentation.Views.updates;
-using MyMoney.Tasks.infrastructure;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Presenters.updates
+using MoMoney.Presentation.Model.updates;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Views.updates;
+using MoMoney.Tasks.infrastructure;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Presenters.updates
 {
     [Concern(typeof (CheckForUpdatesPresenter))]
     public abstract class behaves_like_check_for_updates_presenter : concerns_for<ICheckForUpdatesPresenter, CheckForUpdatesPresenter>
trunk/product/MyMoney/Presentation/Presenters/add_company_presenter.cs
@@ -1,12 +1,12 @@
 using System.Linq;
-using MyMoney.Presentation.Core;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Tasks.application;
-using MyMoney.Utility.Extensions;
-
-namespace MyMoney.Presentation.Presenters
+using MoMoney.Presentation.Core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Tasks.application;
+using MoMoney.Utility.Extensions;
+
+namespace MoMoney.Presentation.Presenters
 {
     public interface IAddCompanyPresenter : IContentPresenter
     {
trunk/product/MyMoney/Presentation/Presenters/add_company_presenter_specs.cs
@@ -1,12 +1,12 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views;
-using MyMoney.Tasks.application;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-
-namespace MyMoney.Presentation.Presenters
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views;
+using MoMoney.Tasks.application;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+
+namespace MoMoney.Presentation.Presenters
 {
     [Concern(typeof (add_company_presenter))]
     public abstract class behaves_like_the_add_company_presenter : concerns_for<IAddCompanyPresenter, add_company_presenter>
trunk/product/MyMoney/Presentation/Resources/ApplicationIcon.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Drawing;
 using System.IO;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Presentation.Resources
+namespace MoMoney.Presentation.Resources
 {
     public class ApplicationIcon : IDisposable
     {
trunk/product/MyMoney/Presentation/Resources/ApplicationIcons.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
 using System.Drawing;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Resources
+namespace MoMoney.Presentation.Resources
 {
     public static class ApplicationIcons
     {
trunk/product/MyMoney/Presentation/Resources/ApplicationImage.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Drawing;
 using System.IO;
-using MyMoney.Infrastructure.Extensions;
+using MoMoney.Infrastructure.Extensions;
 
-namespace MyMoney.Presentation.Resources
+namespace MoMoney.Presentation.Resources
 {
     public class ApplicationImage : IDisposable
     {
trunk/product/MyMoney/Presentation/Resources/ApplicationImages.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Resources
+namespace MoMoney.Presentation.Resources
 {
     public static class ApplicationImages
     {
trunk/product/MyMoney/Presentation/Resources/HybridIcon.cs
@@ -1,6 +1,6 @@
 using System.Drawing;
 
-namespace MyMoney.Presentation.Resources
+namespace MoMoney.Presentation.Resources
 {
     public class HybridIcon : ApplicationIcon
     {
trunk/product/MyMoney/Presentation/Views/billing/add_bill_payment.cs
@@ -1,11 +1,11 @@
 ๏ปฟusing System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Presenters.billing;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Presenters.billing;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     public partial class add_bill_payment : ApplicationDockedWindow, IAddBillPaymentView
     {
trunk/product/MyMoney/Presentation/Views/billing/add_bill_payment.Designer.cs
@@ -1,4 +1,4 @@
-๏ปฟnamespace MyMoney.Presentation.Views.billing
+๏ปฟnamespace MoMoney.Presentation.Views.billing
 {
     partial class add_bill_payment
     {
trunk/product/MyMoney/Presentation/Views/billing/IAddBillPaymentView.cs
@@ -1,10 +1,10 @@
 using System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Presenters.billing;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Presenters.billing;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     public interface IAddBillPaymentView : IDockedContentView, IView<IAddBillPaymentPresenter>
     {
trunk/product/MyMoney/Presentation/Views/billing/IViewAllBills.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     public interface IViewAllBills : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/billing/view_all_bills.cs
@@ -1,9 +1,9 @@
 using System.Collections.Generic;
 using System.Linq;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     public partial class view_all_bills : ApplicationDockedWindow, IViewAllBills
     {
trunk/product/MyMoney/Presentation/Views/billing/view_all_bills.Designer.cs
@@ -1,4 +1,4 @@
-๏ปฟnamespace MyMoney.Presentation.Views.billing
+๏ปฟnamespace MoMoney.Presentation.Views.billing
 {
     partial class view_all_bills
     {
trunk/product/MyMoney/Presentation/Views/billing/view_all_bills_report.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Collections.Generic;
 using DataDynamics.ActiveReports;
-using MyMoney.Presentation.Model.reporting;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Model.reporting;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     public interface IViewAllBillsReport : IReport
     {
trunk/product/MyMoney/Presentation/Views/billing/view_all_bills_report.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.billing
+namespace MoMoney.Presentation.Views.billing
 {
     /// <summary>
     /// Summary description for view_all_bills.
trunk/product/MyMoney/Presentation/Views/core/ApplicationDockedWindow.cs
@@ -1,9 +1,9 @@
 ๏ปฟusing System.Linq;
 using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Resources;
 using WeifenLuo.WinFormsUI.Docking;
 
-namespace MyMoney.Presentation.Views.core
+namespace MoMoney.Presentation.Views.core
 {
     public interface IApplicationDockedWindow : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/core/ApplicationDockedWindow.Designer.cs
@@ -1,4 +1,4 @@
-๏ปฟnamespace MyMoney.Presentation.Views.core
+๏ปฟnamespace MoMoney.Presentation.Views.core
 {
     partial class ApplicationDockedWindow
     {
trunk/product/MyMoney/Presentation/Views/core/ApplicationWindow.cs
@@ -1,8 +1,7 @@
-๏ปฟusing System;
-using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
+๏ปฟusing System.Windows.Forms;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Views.core
+namespace MoMoney.Presentation.Views.core
 {
     public interface IApplicationWindow : IView
     {
@@ -30,9 +29,9 @@ namespace MyMoney.Presentation.Views.core
             return this;
         }
 
-        public void execute(Action action)
-        {
-            BeginInvoke(action);
-        }
+        //public void execute(Action action)
+        //{
+        //    BeginInvoke(action);
+        //}
     }
 }
\ No newline at end of file
trunk/product/MyMoney/Presentation/Views/core/ApplicationWindow.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.core
+namespace MoMoney.Presentation.Views.core
 {
     partial class ApplicationWindow
     {
trunk/product/MyMoney/Presentation/Views/core/IDockedContentView.cs
@@ -1,6 +1,6 @@
 using WeifenLuo.WinFormsUI.Docking;
 
-namespace MyMoney.Presentation.Views.core
+namespace MoMoney.Presentation.Views.core
 {
     public interface IDockedContentView : IDockContent, IView
     {
trunk/product/MyMoney/Presentation/Views/core/IView.cs
@@ -1,8 +1,8 @@
 using System;
 using System.ComponentModel;
-using MyMoney.Presentation.Core;
+using MoMoney.Presentation.Core;
 
-namespace MyMoney.Presentation.Views.core
+namespace MoMoney.Presentation.Views.core
 {
     public interface IView : ISynchronizeInvoke, IDisposable
     {
trunk/product/MyMoney/Presentation/Views/dialogs/ISaveChangesView.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.dialogs
+namespace MoMoney.Presentation.Views.dialogs
 {
     public interface ISaveChangesView : IView<ISaveChangesPresenter>
     {
trunk/product/MyMoney/Presentation/Views/dialogs/SaveChangesView.cs
@@ -1,11 +1,13 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Menu.File.Commands;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
+using JetBrains.Annotations;
+using MoMoney.Presentation.Model.Menu.File.Commands;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.dialogs
+namespace MoMoney.Presentation.Views.dialogs
 {
+    [UsedImplicitly]
     public partial class SaveChangesView : ApplicationWindow, ISaveChangesView
     {
         bool can_be_closed;
trunk/product/MyMoney/Presentation/Views/dialogs/SaveChangesView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.dialogs
+namespace MoMoney.Presentation.Views.dialogs
 {
 public    partial class SaveChangesView
     {
@@ -134,7 +134,7 @@ public    partial class SaveChangesView
 
         #endregion
 
-        private System.Windows.Forms.Button ux_save_button;
+    public System.Windows.Forms.Button ux_save_button;
         private System.Windows.Forms.Button ux_do_not_save_button;
         private System.Windows.Forms.Button ux_cancel_button;
         private System.Windows.Forms.PictureBox ux_image;
trunk/product/MyMoney/Presentation/Views/dialogs/select_file_to_open_dialog.cs
@@ -1,7 +1,7 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Model.Projects;
 
-namespace MyMoney.Presentation.Views.dialogs
+namespace MoMoney.Presentation.Views.dialogs
 {
     public interface ISelectFileToOpenDialog
     {
trunk/product/MyMoney/Presentation/Views/dialogs/select_file_to_save_to_dialog.cs
@@ -1,7 +1,7 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Projects;
+using MoMoney.Presentation.Model.Projects;
 
-namespace MyMoney.Presentation.Views.dialogs
+namespace MoMoney.Presentation.Views.dialogs
 {
     public interface ISelectFileToSaveToDialog
     {
trunk/product/MyMoney/Presentation/Views/income/AddNewIncomeView.cs
@@ -1,14 +1,14 @@
 using System.Collections.Generic;
 using System.Text;
 using System.Windows.Forms;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Model.interaction;
-using MyMoney.Presentation.Presenters.income;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Model.interaction;
+using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     public partial class AddNewIncomeView : ApplicationDockedWindow, IAddNewIncomeView
     {
trunk/product/MyMoney/Presentation/Views/income/AddNewIncomeView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     partial class AddNewIncomeView
     {
trunk/product/MyMoney/Presentation/Views/income/IAddNewIncomeView.cs
@@ -1,11 +1,11 @@
 using System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Model.interaction;
-using MyMoney.Presentation.Presenters.income;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Model.interaction;
+using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     public interface IAddNewIncomeView : IDockedContentView, IView<IAddNewIncomePresenter>, INotification
     {
trunk/product/MyMoney/Presentation/Views/income/IViewIncomeHistory.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     public interface IViewIncomeHistory : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/income/ViewAllIncome.cs
@@ -1,9 +1,9 @@
 using System.Collections.Generic;
-using MyMoney.Presentation.Presenters.income.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Presenters.income.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     public partial class ViewAllIncome : ApplicationDockedWindow, IViewIncomeHistory
     {
trunk/product/MyMoney/Presentation/Views/income/ViewAllIncome.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views.income
 {
     partial class ViewAllIncome
     {
trunk/product/MyMoney/Presentation/Views/Menu/Help/AboutTheApplicationView.cs
@@ -1,10 +1,10 @@
 using System.Linq;
 using System.Reflection;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.Menu.Help
+namespace MoMoney.Presentation.Views.Menu.Help
 {
     public partial class AboutTheApplicationView : ApplicationWindow, IAboutApplicationView
     {
trunk/product/MyMoney/Presentation/Views/Menu/Help/AboutTheApplicationView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Menu.Help
+namespace MoMoney.Presentation.Views.Menu.Help
 {
     public partial class AboutTheApplicationView
     {
@@ -162,7 +162,7 @@ namespace MyMoney.Presentation.Views.Menu.Help
             this.ShowIcon = false;
             this.ShowInTaskbar = false;
             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
-            this.Text = "About MyMoney";
+            this.Text = "About MoMoney";
             this.tableLayoutPanel.ResumeLayout(false);
             this.tableLayoutPanel.PerformLayout();
             ((System.ComponentModel.ISupportInitialize)(this.ux_logo)).EndInit();
trunk/product/MyMoney/Presentation/Views/Menu/Help/IAboutApplicationView.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Menu.Help
+namespace MoMoney.Presentation.Views.Menu.Help
 {
     public interface IAboutApplicationView
     {
trunk/product/MyMoney/Presentation/Views/Menu/Mappers/SubMenuToToolStripMenuItemMapper.cs
@@ -1,9 +1,9 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.Menu.Mappers
+namespace MoMoney.Presentation.Views.Menu.Mappers
 {
     public interface ISubMenuToToolStripMenuItemMapper : IMapper<ISubMenu, ToolStripMenuItem>
     {
trunk/product/MyMoney/Presentation/Views/Menu/ApplicationMenuHost.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Views.Menu.Mappers;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Views.Menu.Mappers;
+using MoMoney.Presentation.Views.Shell;
 
-namespace MyMoney.Presentation.Views.Menu
+namespace MoMoney.Presentation.Views.Menu
 {
     public interface IMenuView
     {
trunk/product/MyMoney/Presentation/Views/Menu/ApplicationMenuHostSpecs.cs
@@ -1,13 +1,13 @@
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Views.Menu.Mappers;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Views.Menu.Mappers;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Presentation.Views.Menu
+namespace MoMoney.Presentation.Views.Menu
 {
     [Concern(typeof (ApplicationMenuHost))]
     public class behaves_like_application_menu_host : concerns_for<IMenuView, ApplicationMenuHost>
trunk/product/MyMoney/Presentation/Views/Navigation/INavigationView.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Model.Navigation;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Model.Navigation;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Navigation
+namespace MoMoney.Presentation.Views.Navigation
 {
     public interface INavigationView : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/Navigation/MainMenuView.cs
@@ -1,10 +1,10 @@
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.Shell;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.Shell;
 using WeifenLuo.WinFormsUI.Docking;
 using XPExplorerBar;
 
-namespace MyMoney.Presentation.Views.Navigation
+namespace MoMoney.Presentation.Views.Navigation
 {
     public interface IMainMenuView : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/Navigation/MainMenuView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Navigation
+namespace MoMoney.Presentation.Views.Navigation
 {
     partial class MainMenuView
     {
trunk/product/MyMoney/Presentation/Views/Navigation/NavigationView.cs
@@ -1,12 +1,12 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.Navigation;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Model.Navigation;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Utility.Extensions;
 using WeifenLuo.WinFormsUI.Docking;
 
-namespace MyMoney.Presentation.Views.Navigation
+namespace MoMoney.Presentation.Views.Navigation
 {
     public partial class NavigationView : ApplicationDockedWindow, INavigationView
     {
trunk/product/MyMoney/Presentation/Views/Navigation/NavigationView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Navigation
+namespace MoMoney.Presentation.Views.Navigation
 {
     partial class NavigationView
     {
trunk/product/MyMoney/Presentation/Views/reporting/IReportViewer.cs
@@ -1,7 +1,7 @@
-using MyMoney.Presentation.Model.reporting;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Model.reporting;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.reporting
+namespace MoMoney.Presentation.Views.reporting
 {
     public interface IReportViewer : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/reporting/ReportViewer.cs
@@ -1,9 +1,9 @@
 ๏ปฟusing DataDynamics.ActiveReports;
-using MyMoney.Presentation.Model.reporting;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Presentation.Model.reporting;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.reporting
+namespace MoMoney.Presentation.Views.reporting
 {
     public partial class ReportViewer : ApplicationDockedWindow, IReportViewer
     {
trunk/product/MyMoney/Presentation/Views/reporting/ReportViewer.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.reporting
+namespace MoMoney.Presentation.Views.reporting
 {
     partial class ReportViewer
     {
trunk/product/MyMoney/Presentation/Views/Shell/ApplicationShell.cs
@@ -1,9 +1,9 @@
 ๏ปฟusing System.ComponentModel.Composition;
 using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     [Export(typeof (IShell))]
     public partial class ApplicationShell : ApplicationWindow, IShell
trunk/product/MyMoney/Presentation/Views/Shell/ApplicationShell.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Shell {
+namespace MoMoney.Presentation.Views.Shell {
     partial class ApplicationShell
     {
         /// <summary>
@@ -92,7 +92,7 @@ namespace MyMoney.Presentation.Views.Shell {
             this.MainMenuStrip = this.ux_main_menu_strip;
             this.Name = "window_shell";
             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
-            this.Text = "MyMoney";
+            this.Text = "MoMoney";
             this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
             this.ResumeLayout(false);
             this.PerformLayout();
trunk/product/MyMoney/Presentation/Views/Shell/IGettingStartedView.cs
@@ -1,6 +1,6 @@
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface IGettingStartedView : IDockedContentView
     {
trunk/product/MyMoney/Presentation/Views/Shell/INotificationIconView.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface INotificationIconView : IDisposable
     {
trunk/product/MyMoney/Presentation/Views/Shell/IShell.cs
@@ -1,8 +1,8 @@
 using System.ComponentModel;
 using System.Windows.Forms;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface IShell : IWin32Window, ISynchronizeInvoke, IContainerControl, IBindableComponent, IDropTarget
     {
trunk/product/MyMoney/Presentation/Views/Shell/IUnhandledErrorView.cs
@@ -1,8 +1,8 @@
 using System;
-using MyMoney.Presentation.Presenters.Shell;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Presenters.Shell;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface IUnhandledErrorView : IView<IUnhandledErrorPresenter>
     {
trunk/product/MyMoney/Presentation/Views/Shell/NotificationIconView.cs
@@ -1,12 +1,12 @@
 using System.Windows.Forms;
 using Castle.Core;
-using MyMoney.Presentation.Model.Menu;
-using MyMoney.Presentation.Model.Menu.File;
-using MyMoney.Presentation.Model.Menu.Help;
-using MyMoney.Presentation.Model.Menu.window;
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Model.Menu;
+using MoMoney.Presentation.Model.Menu.File;
+using MoMoney.Presentation.Model.Menu.Help;
+using MoMoney.Presentation.Model.Menu.window;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     [Singleton]
     public class NotificationIconView : INotificationIconView
trunk/product/MyMoney/Presentation/Views/Shell/StatusBarView.cs
@@ -1,6 +1,6 @@
-using MyMoney.Presentation.Resources;
+using MoMoney.Presentation.Resources;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface IStatusBarView
     {
trunk/product/MyMoney/Presentation/Views/Shell/TaskTrayMessage.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface ITaskTrayMessageView
     {
trunk/product/MyMoney/Presentation/Views/Shell/TitleBar.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public interface ITitleBar
     {
trunk/product/MyMoney/Presentation/Views/Shell/UnhandledErrorView.cs
@@ -1,8 +1,8 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Presentation.Presenters.Shell;
+using MoMoney.Presentation.Presenters.Shell;
 
-namespace MyMoney.Presentation.Views.Shell
+namespace MoMoney.Presentation.Views.Shell
 {
     public class UnhandledErrorView : IUnhandledErrorView
     {
trunk/product/MyMoney/Presentation/Views/Startup/ISplashScreenView.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Startup
+namespace MoMoney.Presentation.Views.Startup
 {
     public interface ISplashScreenView
     {
trunk/product/MyMoney/Presentation/Views/Startup/SplashScreenView.cs
@@ -1,8 +1,8 @@
 using System.Windows.Forms;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.Startup
+namespace MoMoney.Presentation.Views.Startup
 {
     public partial class SplashScreenView : ApplicationWindow, ISplashScreenView
     {
trunk/product/MyMoney/Presentation/Views/Startup/SplashScreenView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.Startup {
+namespace MoMoney.Presentation.Views.Startup {
     partial class SplashScreenView
     {
         /// <summary>
trunk/product/MyMoney/Presentation/Views/updates/CheckForUpdatesView.cs
@@ -1,11 +1,11 @@
 ๏ปฟusing System.Reflection;
 using System.Windows.Forms;
-using MyMoney.Presentation.Model.updates;
-using MyMoney.Presentation.Presenters.updates;
-using MyMoney.Presentation.Resources;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Model.updates;
+using MoMoney.Presentation.Presenters.updates;
+using MoMoney.Presentation.Resources;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.updates
+namespace MoMoney.Presentation.Views.updates
 {
     public partial class CheckForUpdatesView : ApplicationWindow, ICheckForUpdatesView
     {
trunk/product/MyMoney/Presentation/Views/updates/CheckForUpdatesView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views.updates
+namespace MoMoney.Presentation.Views.updates
 {
     partial class CheckForUpdatesView
     {
trunk/product/MyMoney/Presentation/Views/updates/ICheckForUpdatesView.cs
@@ -1,8 +1,8 @@
-using MyMoney.Presentation.Model.updates;
-using MyMoney.Presentation.Presenters.updates;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Presentation.Model.updates;
+using MoMoney.Presentation.Presenters.updates;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views.updates
+namespace MoMoney.Presentation.Views.updates
 {
     public interface ICheckForUpdatesView : IView<ICheckForUpdatesPresenter>
     {
trunk/product/MyMoney/Presentation/Views/AddCompanyView.cs
@@ -1,15 +1,15 @@
 using System.Collections.Generic;
 using System.Text;
 using System.Windows.Forms;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Databindings;
-using MyMoney.Presentation.Model.interaction;
-using MyMoney.Presentation.Presenters;
-using MyMoney.Presentation.Presenters.billing.dto;
-using MyMoney.Presentation.Views.core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Databindings;
+using MoMoney.Presentation.Model.interaction;
+using MoMoney.Presentation.Presenters;
+using MoMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Presentation.Views.core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views
+namespace MoMoney.Presentation.Views
 {
     public partial class AddCompanyView : ApplicationDockedWindow, IAddCompanyView
     {
trunk/product/MyMoney/Presentation/Views/AddCompanyView.Designer.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Presentation.Views
+namespace MoMoney.Presentation.Views
 {
     partial class AddCompanyView
     {
trunk/product/MyMoney/Presentation/Views/IAddCompanyView.cs
@@ -1,10 +1,10 @@
 using System.Collections.Generic;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Presentation.Model.interaction;
-using MyMoney.Presentation.Presenters;
-using MyMoney.Presentation.Views.core;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Presentation.Model.interaction;
+using MoMoney.Presentation.Presenters;
+using MoMoney.Presentation.Views.core;
 
-namespace MyMoney.Presentation.Views
+namespace MoMoney.Presentation.Views
 {
     public interface IAddCompanyView : IDockedContentView, INotification, IView<IAddCompanyPresenter>
     {
trunk/product/MyMoney/Presentation/Views/listbox_extensions.cs
@@ -1,9 +1,9 @@
 using System.Collections.Generic;
 using System.Windows.Forms;
 using ComponentFactory.Krypton.Toolkit;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.Presentation.Views
+namespace MoMoney.Presentation.Views
 {
     public static class listbox_extensions
     {
trunk/product/MyMoney/Properties/Resources.Designer.cs
@@ -1,14 +1,14 @@
 ๏ปฟ//------------------------------------------------------------------------------
 // <auto-generated>
 //     This code was generated by a tool.
-//     Runtime Version:2.0.50727.1433
+//     Runtime Version:2.0.50727.3082
 //
 //     Changes to this file may cause incorrect behavior and will be lost if
 //     the code is regenerated.
 // </auto-generated>
 //------------------------------------------------------------------------------
 
-namespace MyMoney.Properties {
+namespace MoMoney.Properties {
     using System;
     
     
@@ -39,7 +39,7 @@ namespace MyMoney.Properties {
         internal static global::System.Resources.ResourceManager ResourceManager {
             get {
                 if (object.ReferenceEquals(resourceMan, null)) {
-                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MyMoney.Properties.Resources", typeof(Resources).Assembly);
+                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MoMoney.Properties.Resources", typeof(Resources).Assembly);
                     resourceMan = temp;
                 }
                 return resourceMan;
trunk/product/MyMoney/Properties/Settings.Designer.cs
@@ -1,14 +1,14 @@
 ๏ปฟ//------------------------------------------------------------------------------
 // <auto-generated>
 //     This code was generated by a tool.
-//     Runtime Version:2.0.50727.1433
+//     Runtime Version:2.0.50727.3082
 //
 //     Changes to this file may cause incorrect behavior and will be lost if
 //     the code is regenerated.
 // </auto-generated>
 //------------------------------------------------------------------------------
 
-namespace MyMoney.Properties {
+namespace MoMoney.Properties {
     
     
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
trunk/product/MyMoney/Tasks/application/BillingTasks.cs
@@ -1,12 +1,12 @@
 using System.Collections.Generic;
 using Castle.Core;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.Core;
-using MyMoney.Domain.repositories;
-using MyMoney.Infrastructure.interceptors;
-using MyMoney.Presentation.Presenters.billing.dto;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.Core;
+using MoMoney.Domain.repositories;
+using MoMoney.Infrastructure.interceptors;
+using MoMoney.Presentation.Presenters.billing.dto;
 
-namespace MyMoney.Tasks.application
+namespace MoMoney.Tasks.application
 {
     public interface IBillingTasks
     {
trunk/product/MyMoney/Tasks/application/CustomerTasks.cs
@@ -1,10 +1,10 @@
 using System.Linq;
 using Castle.Core;
-using MyMoney.Domain.accounting;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.interceptors;
+using MoMoney.Domain.accounting;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.interceptors;
 
-namespace MyMoney.Tasks.application
+namespace MoMoney.Tasks.application
 {
     public interface ICustomerTasks
     {
trunk/product/MyMoney/Tasks/application/IncomeTasks.cs
@@ -1,12 +1,12 @@
 using System.Collections.Generic;
 using Castle.Core;
-using MyMoney.Domain.accounting.billing;
-using MyMoney.Domain.accounting.financial_growth;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.interceptors;
-using MyMoney.Presentation.Presenters.income.dto;
+using MoMoney.Domain.accounting.billing;
+using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.interceptors;
+using MoMoney.Presentation.Presenters.income.dto;
 
-namespace MyMoney.Tasks.application
+namespace MoMoney.Tasks.application
 {
     public interface IIncomeTasks
     {
trunk/product/MyMoney/Tasks/infrastructure/FileSystemTasks.cs
@@ -1,9 +1,9 @@
 using System;
 using Castle.Core;
-using MyMoney.Infrastructure.interceptors;
-using MyMoney.Presentation.Model.file_system;
+using MoMoney.Infrastructure.interceptors;
+using MoMoney.Presentation.Model.file_system;
 
-namespace MyMoney.Tasks.infrastructure
+namespace MoMoney.Tasks.infrastructure
 {
     public interface IFileSystemTasks
     {
trunk/product/MyMoney/Tasks/infrastructure/UpdateTasks.cs
@@ -1,8 +1,8 @@
 using System.Deployment.Application;
-using MyMoney.Presentation.Model.updates;
-using MyMoney.Utility.Core;
+using MoMoney.Presentation.Model.updates;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Tasks.infrastructure
+namespace MoMoney.Tasks.infrastructure
 {
     public interface IUpdateTasks
     {
trunk/product/MyMoney/Testing/MetaData/ConcernAttribute.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Testing.MetaData
+namespace MoMoney.Testing.MetaData
 {
     public class ConcernAttribute : bdddoc.core.ConcernAttribute
     {
trunk/product/MyMoney/Testing/MetaData/run_in_real_container.cs
@@ -1,10 +1,10 @@
 using System.Collections;
 using MbUnit.Core.Framework;
 using MbUnit.Core.Invokers;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Infrastructure.Container.Windsor;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.Container.Windsor;
 
-namespace MyMoney.Testing.MetaData
+namespace MoMoney.Testing.MetaData
 {
     public class run_in_real_container : DecoratorPatternAttribute
     {
trunk/product/MyMoney/Testing/spechelpers/contexts/behaves_like_a_repository.cs
@@ -1,9 +1,9 @@
 using MbUnit.Framework;
-using MyMoney.Domain.Core;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Testing.MetaData;
+using MoMoney.Domain.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Testing.MetaData;
 
-namespace MyMoney.Testing.spechelpers.contexts
+namespace MoMoney.Testing.spechelpers.contexts
 {
     [run_in_real_container]
     [Concern(typeof (IRepository))]
trunk/product/MyMoney/Testing/spechelpers/contexts/concerns_for.cs
@@ -1,8 +1,8 @@
 using jpboodhoo.bdd.mbunit.standard.observations;
-using MyMoney.Testing.Extensions;
+using MoMoney.Testing.Extensions;
 using Rhino.Mocks;
 
-namespace MyMoney.Testing.spechelpers.contexts
+namespace MoMoney.Testing.spechelpers.contexts
 {
     public abstract class concerns_for<Contract> : observations_for_a_sut_without_a_contract<Contract>,
                                                    IHideObjectMembers
trunk/product/MyMoney/Testing/spechelpers/core/assertions.cs
@@ -4,7 +4,7 @@ using System.Linq;
 using JetBrains.Annotations;
 using MbUnit.Framework;
 
-namespace MyMoney.Testing.spechelpers.core
+namespace MoMoney.Testing.spechelpers.core
 {
     public static class assertions
     {
trunk/product/MyMoney/Testing/spechelpers/core/empty_fixture.cs
@@ -1,6 +1,6 @@
 using MbUnit.Framework;
 
-namespace MyMoney.Testing.spechelpers.core
+namespace MoMoney.Testing.spechelpers.core
 {
     [TestFixture]
     public class empty_fixture
trunk/product/MyMoney/Testing/spechelpers/core/IHideObjectMembers.cs
@@ -1,7 +1,7 @@
 using System;
 using System.ComponentModel;
 
-namespace MyMoney.Testing.Extensions
+namespace MoMoney.Testing.Extensions
 {
     [EditorBrowsable(EditorBrowsableState.Never)]
     public interface IHideObjectMembers
trunk/product/MyMoney/Testing/spechelpers/core/method_call_occurance.cs
@@ -1,7 +1,7 @@
 using System;
 using Rhino.Mocks;
 
-namespace MyMoney.Testing.Extensions
+namespace MoMoney.Testing.Extensions
 {
     public class method_call_occurance<T> : IHideObjectMembers
     {
trunk/product/MyMoney/Testing/spechelpers/core/mocking_extensions.cs
@@ -1,11 +1,11 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using MyMoney.Testing.Extensions;
+using MoMoney.Testing.Extensions;
 using Rhino.Mocks;
 using Rhino.Mocks.Interfaces;
 
-namespace MyMoney.Testing.spechelpers.core
+namespace MoMoney.Testing.spechelpers.core
 {
     public static class mocking_extensions
     {
trunk/product/MyMoney/Testing/win.forms/Events.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Windows.Forms;
 
-namespace MyMoney.Testing.win.forms
+namespace MoMoney.Testing.win.forms
 {
     public class Events
     {
trunk/product/MyMoney/Testing/win.forms/EventTrigger.cs
@@ -6,7 +6,7 @@ using System.Linq.Expressions;
 using System.Reflection;
 using jpboodhoo.bdd.core.extensions;
 
-namespace MyMoney.Testing.win.forms
+namespace MoMoney.Testing.win.forms
 {
     static public class EventTrigger
     {
trunk/product/MyMoney/Testing/win.forms/EventTriggerSpecs.cs
@@ -2,10 +2,10 @@ using System;
 using System.Windows.Forms;
 using jpboodhoo.bdd.contexts;
 using MbUnit.Framework;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Testing.win.forms
+namespace MoMoney.Testing.win.forms
 {
     [Ignore]
     public class when_invoking_a_call_on_a_target_via_reflection : concerns_for
trunk/product/MyMoney/Testing/win.forms/IEventTarget.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Testing.win.forms
+namespace MoMoney.Testing.win.forms
 {
     public interface IEventTarget
     {
trunk/product/MyMoney/Testing/Call.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Testing
+namespace MoMoney.Testing
 {
     public class call
     {
trunk/product/MyMoney/Utility/Core/and_specification.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public class and_specification<T> : ISpecification<T>
     {
trunk/product/MyMoney/Utility/Core/chained_command.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     internal class chained_command : ICommand
     {
trunk/product/MyMoney/Utility/Core/chained_mapper.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public class chained_mapper<Left, Middle, Right> : IMapper<Left, Right>
     {
trunk/product/MyMoney/Utility/Core/ChainedConfiguration.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public class ChainedConfiguration<T> : IConfiguration<T>
     {
trunk/product/MyMoney/Utility/Core/command.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     internal class command : IDisposableCommand
     {
trunk/product/MyMoney/Utility/Core/empty_command.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     internal class empty_command : ICommand
     {
trunk/product/MyMoney/Utility/Core/IBuilder.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IBuilder<T>
     {
trunk/product/MyMoney/Utility/Core/ICallback.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface ICallback
     {
trunk/product/MyMoney/Utility/Core/ICommand.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface ICommand
     {
trunk/product/MyMoney/Utility/Core/IConfiguration.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IConfiguration<T>
     {
trunk/product/MyMoney/Utility/Core/IDisposableCommand.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IDisposableCommand : ICommand, IDisposable
     {}
trunk/product/MyMoney/Utility/Core/IFactory.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IFactory<T>
     {
trunk/product/MyMoney/Utility/Core/IMapper.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IMapper<Input, Output>
     {
trunk/product/MyMoney/Utility/Core/IParameterizedCommand.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IParameterizedCommand<T>
     {
trunk/product/MyMoney/Utility/Core/ISpecification.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface ISpecification<T>
     {
trunk/product/MyMoney/Utility/Core/IValueReturningVisitor.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IValueReturningVisitor<Value, T> : IVisitor<T>
     {
trunk/product/MyMoney/Utility/Core/IVisitable.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IVisitable<T>
     {
trunk/product/MyMoney/Utility/Core/IVisitor.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public interface IVisitor<T>
     {
trunk/product/MyMoney/Utility/Core/Map.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public class Map<Input, Output> : IMapper<Input, Output>
     {
trunk/product/MyMoney/Utility/Core/or_specification.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Core
+namespace MoMoney.Utility.Core
 {
     public class or_specification<T> : ISpecification<T>
     {
trunk/product/MyMoney/Utility/Extensions/command_extensions.cs
@@ -1,8 +1,8 @@
 using System.Collections.Generic;
-using MyMoney.Infrastructure.Threading;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Threading;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class command_extensions
     {
trunk/product/MyMoney/Utility/Extensions/configuration_extensions.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class configuration_extensions
     {
trunk/product/MyMoney/Utility/Extensions/conversion_extensions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class conversion_extensions
     {
trunk/product/MyMoney/Utility/Extensions/enumerable_extensions.cs
@@ -2,7 +2,7 @@ using System;
 using System.Collections.Generic;
 using System.Linq;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class enumerable_extensions
     {
trunk/product/MyMoney/Utility/Extensions/func_extensions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class func_extensions
     {
trunk/product/MyMoney/Utility/Extensions/mapping_extensions.cs
@@ -1,9 +1,9 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class mapping_extensions
     {
trunk/product/MyMoney/Utility/Extensions/mapping_extensions_specs.cs
@@ -1,11 +1,11 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.MetaData;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
-using MyMoney.Utility.Core;
-using mocking_extensions=MyMoney.Testing.spechelpers.core.mocking_extensions;
+using MoMoney.Testing.MetaData;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
+using MoMoney.Utility.Core;
+using mocking_extensions=MoMoney.Testing.spechelpers.core.mocking_extensions;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     [Concern(typeof (mapping_extensions))]
     public class when_transforming_type_A_to_type_B_then_C : concerns_for
trunk/product/MyMoney/Utility/Extensions/numeric_conversions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class numeric_conversions
     {
trunk/product/MyMoney/Utility/Extensions/numeric_conversions_specs.cs
@@ -1,8 +1,8 @@
 using jpboodhoo.bdd.contexts;
-using MyMoney.Testing.spechelpers.contexts;
-using MyMoney.Testing.spechelpers.core;
+using MoMoney.Testing.spechelpers.contexts;
+using MoMoney.Testing.spechelpers.core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public class when_converting_a_valid_string_to_a_long : concerns_for
     {
trunk/product/MyMoney/Utility/Extensions/querying_extensions.cs
@@ -2,7 +2,7 @@ using System;
 using System.Collections.Generic;
 using System.Linq;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class querying_extensions
     {
trunk/product/MyMoney/Utility/Extensions/specification_extensions.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class specification_extensions
     {
trunk/product/MyMoney/Utility/Extensions/string_extensions.cs
@@ -1,4 +1,4 @@
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class string_extensions
     {
trunk/product/MyMoney/Utility/Extensions/type_extensions.cs
@@ -1,6 +1,6 @@
 using System;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class type_extensions
     {
trunk/product/MyMoney/Utility/Extensions/visitor_extensions.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.Utility.Extensions
+namespace MoMoney.Utility.Extensions
 {
     public static class visitor_extensions
     {
trunk/product/MyMoney/windows.ui/bootstrap.cs
@@ -1,7 +1,7 @@
 using System;
-using MyMoney.Utility.Extensions;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal static class bootstrap
     {
trunk/product/MyMoney/windows.ui/check_for_updates.cs
@@ -1,9 +1,9 @@
 using System.Deployment.Application;
 using System.Windows.Forms;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     public class check_for_updates : ICommand
     {
trunk/product/MyMoney/windows.ui/global_error_handling.cs
@@ -1,13 +1,13 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class global_error_handling : ICommand
     {
trunk/product/MyMoney/windows.ui/hookup.cs
@@ -1,6 +1,6 @@
-using MyMoney.Utility.Core;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class hookup
     {
trunk/product/MyMoney/windows.ui/start_the_application.cs
@@ -1,13 +1,13 @@
 using System;
 using System.Windows.Forms;
-using MyMoney.Infrastructure.Container;
-using MyMoney.Infrastructure.eventing;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Presentation.Context;
-using MyMoney.Presentation.Model.messages;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.eventing;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Presentation.Context;
+using MoMoney.Presentation.Model.messages;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class start_the_application : ICommand
     {
trunk/product/MyMoney/windows.ui/wire_up_the_container.cs
@@ -1,10 +1,10 @@
-using MyMoney.Infrastructure.Container.Windsor;
-using MyMoney.Infrastructure.Extensions;
-using MyMoney.Presentation.Presenters.Commands;
-using MyMoney.Utility.Core;
-using MyMoney.Utility.Extensions;
+using MoMoney.Infrastructure.Container.Windsor;
+using MoMoney.Infrastructure.Extensions;
+using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Utility.Core;
+using MoMoney.Utility.Extensions;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class wire_up_the_container : ICommand
     {
trunk/product/MyMoney/windows.ui/wire_up_the_core_services_into_the.cs
@@ -1,8 +1,8 @@
-using MyMoney.Infrastructure.Container;
-using MyMoney.Infrastructure.Container.Windsor;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container;
+using MoMoney.Infrastructure.Container.Windsor;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class wire_up_the_core_services_into_the : ICommand
     {
trunk/product/MyMoney/windows.ui/wire_up_the_mappers_in_to_the.cs
@@ -1,7 +1,7 @@
-using MyMoney.Infrastructure.Container.Windsor;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container.Windsor;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class wire_up_the_mappers_in_to_the : ICommand
     {
trunk/product/MyMoney/windows.ui/wire_up_the_reports_in_to_the.cs
@@ -1,9 +1,9 @@
-using MyMoney.Infrastructure.Container.Windsor;
-using MyMoney.Presentation.Views.billing;
-using MyMoney.Presentation.Views.reporting;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container.Windsor;
+using MoMoney.Presentation.Views.billing;
+using MoMoney.Presentation.Views.reporting;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class wire_up_the_reports_in_to_the : ICommand
     {
trunk/product/MyMoney/windows.ui/wire_up_the_views_in_to_the.cs
@@ -1,17 +1,17 @@
-using MyMoney.Infrastructure.Container.Windsor;
-using MyMoney.Presentation.Context;
-using MyMoney.Presentation.Views;
-using MyMoney.Presentation.Views.billing;
-using MyMoney.Presentation.Views.dialogs;
-using MyMoney.Presentation.Views.income;
-using MyMoney.Presentation.Views.Menu.Help;
-using MyMoney.Presentation.Views.Navigation;
-using MyMoney.Presentation.Views.Shell;
-using MyMoney.Presentation.Views.Startup;
-using MyMoney.Presentation.Views.updates;
-using MyMoney.Utility.Core;
+using MoMoney.Infrastructure.Container.Windsor;
+using MoMoney.Presentation.Context;
+using MoMoney.Presentation.Views;
+using MoMoney.Presentation.Views.billing;
+using MoMoney.Presentation.Views.dialogs;
+using MoMoney.Presentation.Views.income;
+using MoMoney.Presentation.Views.Menu.Help;
+using MoMoney.Presentation.Views.Navigation;
+using MoMoney.Presentation.Views.Shell;
+using MoMoney.Presentation.Views.Startup;
+using MoMoney.Presentation.Views.updates;
+using MoMoney.Utility.Core;
 
-namespace MyMoney.windows.ui
+namespace MoMoney.windows.ui
 {
     internal class wire_up_the_views_in_to_the : ICommand
     {
trunk/product/MyMoney/MyMoney.csproj
@@ -8,8 +8,8 @@
     <ProjectGuid>{2DB82691-BF15-4538-8C5E-6BF8F4F875A9}</ProjectGuid>
     <OutputType>WinExe</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>MyMoney</RootNamespace>
-    <AssemblyName>MyMoney</AssemblyName>
+    <RootNamespace>MoMoney</RootNamespace>
+    <AssemblyName>MoMoney</AssemblyName>
     <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
   </PropertyGroup>