Commit 4ace483
Changed files (3)
product
desktop.ui
product/desktop.ui/model/TaxesForIndividual.cs
@@ -0,0 +1,8 @@
+namespace desktop.ui.model
+{
+ public class TaxesForIndividual : Observable<TaxesForIndividual>
+ {
+ public decimal TotalIncome { get; set; }
+ public decimal Taxes { get; set; }
+ }
+}
\ No newline at end of file
product/desktop.ui/presenters/TaxSummaryPresenter.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using desktop.ui.eventing;
using desktop.ui.events;
+using desktop.ui.model;
namespace desktop.ui.presenters
{
@@ -60,10 +61,4 @@ namespace desktop.ui.presenters
IDictionary<Guid, TaxesForIndividual> people = new Dictionary<Guid, TaxesForIndividual>();
}
-
- public class TaxesForIndividual : Observable<TaxesForIndividual>
- {
- public decimal TotalIncome { get; set; }
- public decimal Taxes { get; set; }
- }
}
\ No newline at end of file
product/desktop.ui/desktop.ui.csproj
@@ -90,6 +90,7 @@
<Compile Include="handlers\PublishEventHandler.cs" />
<Compile Include="IObservableCommand.cs" />
<Compile Include="messages\private\AddedNewFamilyMember.cs" />
+ <Compile Include="model\TaxesForIndividual.cs" />
<Compile Include="Observable.cs" />
<Compile Include="Presenter.cs" />
<Compile Include="PresenterFactory.cs" />