Commit d2c842e

mokhan <mokhan@ce5e1baf-6525-42e4-a1b2-857ea38da20a>
2009-04-21 22:09:34
git-svn-id: https://svn.xp-dev.com/svn/mokhan-mo.money@186 ce5e1baf-6525-42e4-a1b2-857ea38da20a
1 parent 45ef7c7
trunk/product/MoMoney.DataAccess/Repositories/IncomeRepository.cs
@@ -1,6 +1,6 @@
 using System.Collections.Generic;
 using Gorilla.Commons.Infrastructure.Transactions;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.repositories;
 
 namespace MoMoney.DataAccess.repositories
trunk/product/MoMoney.Domain/Accounting/Billing/Bill.cs
@@ -43,7 +43,7 @@ namespace MoMoney.Domain.accounting.billing
 
         private IMoney the_amount_paid()
         {
-            return payments.return_value_from_visiting_all_items_with(new total_payments_calculator());
+            return payments.return_value_from_visiting_all_items_with(new TotalPaymentsCalculator());
         }
 
         public bool Equals(Bill obj)
trunk/product/MoMoney.Domain/Accounting/Billing/Company.cs
@@ -1,6 +1,6 @@
 using System;
 using Gorilla.Commons.Utility;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.Core;
 
 namespace MoMoney.Domain.accounting.billing
trunk/product/MoMoney.Domain/Accounting/Billing/total_payments_calculator.cs → trunk/product/MoMoney.Domain/Accounting/Billing/TotalPaymentsCalculator.cs
@@ -3,9 +3,9 @@ using MoMoney.Domain.Core;
 
 namespace MoMoney.Domain.accounting.billing
 {
-    internal class total_payments_calculator : IValueReturningVisitor<IMoney, IPayment>
+    internal class TotalPaymentsCalculator : IValueReturningVisitor<IMoney, IPayment>
     {
-        public total_payments_calculator()
+        public TotalPaymentsCalculator()
         {
             reset();
         }
trunk/product/MoMoney.Domain/Accounting/Growth/income.cs
@@ -3,7 +3,7 @@ using Gorilla.Commons.Utility;
 using MoMoney.Domain.accounting.billing;
 using MoMoney.Domain.Core;
 
-namespace MoMoney.Domain.accounting.financial_growth
+namespace MoMoney.Domain.Accounting.Growth
 {
     public interface IIncome : IEntity
     {
trunk/product/MoMoney.Domain/Accounting/Growth/income_extensions.cs → trunk/product/MoMoney.Domain/Accounting/Growth/IncomeExtensions.cs
@@ -2,9 +2,9 @@ using System.Collections.Generic;
 using Gorilla.Commons.Utility;
 using MoMoney.Domain.Core;
 
-namespace MoMoney.Domain.accounting.financial_growth
+namespace MoMoney.Domain.Accounting.Growth
 {
-    public static class income_extensions
+    public static class IncomeExtensions
     {
         public static IMoney in_the(this IEnumerable<IIncome> income_collected, IYear year)
         {
trunk/product/MoMoney.Domain/Accounting/AccountHolder.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
 using Gorilla.Commons.Utility;
 using Gorilla.Commons.Utility.Extensions;
 using MoMoney.Domain.accounting.billing;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.Core;
 
 namespace MoMoney.Domain.accounting
trunk/product/MoMoney.Domain/Accounting/AccountHolderSpecs.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
 using developwithpassion.bdd.contexts;
 using Gorilla.Commons.Testing;
 using MoMoney.Domain.accounting.billing;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.Core;
 
 namespace MoMoney.Domain.accounting
trunk/product/MoMoney.Domain/Repositories/IIncomeRepository.cs
@@ -1,5 +1,5 @@
 using System.Collections.Generic;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 
 namespace MoMoney.Domain.repositories
 {
trunk/product/MoMoney.Domain/MoMoney.Domain.csproj
@@ -67,11 +67,11 @@
     <Compile Include="Accounting\Billing\IEmployee.cs" />
     <Compile Include="Accounting\Billing\ILedgerEntry.cs" />
     <Compile Include="Accounting\Billing\Payment.cs" />
-    <Compile Include="Accounting\Billing\total_payments_calculator.cs" />
+    <Compile Include="Accounting\Billing\TotalPaymentsCalculator.cs" />
     <Compile Include="Accounting\GeneralLedger.cs" />
     <Compile Include="Accounting\GeneralLedgerSpecs.cs" />
     <Compile Include="Accounting\Growth\income.cs" />
-    <Compile Include="Accounting\Growth\income_extensions.cs" />
+    <Compile Include="Accounting\Growth\IncomeExtensions.cs" />
     <Compile Include="Accounting\IInvoice.cs" />
     <Compile Include="Core\DateExtensions.cs" />
     <Compile Include="Core\day.cs" />
trunk/product/MoMoney.Service/Application/AddNewIncomeCommandSpecs.cs
@@ -3,7 +3,7 @@ using developwithpassion.bdd.contexts;
 using Gorilla.Commons.Testing;
 using Gorilla.Commons.Utility;
 using MoMoney.Domain.accounting.billing;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.Core;
 using MoMoney.Presentation.Model.interaction;
 using MoMoney.Presentation.Presenters.income.dto;
trunk/product/MoMoney.Service/Application/GetAllIncomeQuery.cs
@@ -1,7 +1,7 @@
 using System.Collections.Generic;
 using Gorilla.Commons.Utility.Core;
 using Gorilla.Commons.Utility.Extensions;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Presentation.Presenters.income.dto;
 using MoMoney.Tasks.application;
 
trunk/product/MoMoney.Service/Application/IncomeTasks.cs
@@ -1,6 +1,6 @@
 using System.Collections.Generic;
 using MoMoney.Domain.accounting.billing;
-using MoMoney.Domain.accounting.financial_growth;
+using MoMoney.Domain.Accounting.Growth;
 using MoMoney.Domain.Core;
 using MoMoney.Domain.repositories;
 using MoMoney.Presentation.Presenters.income.dto;