-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TM-302 updated Financial Breakdown ViewModel with projection data
- Loading branch information
1 parent
30a9758
commit 70b76fe
Showing
6 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 12 additions & 2 deletions
14
src/SFA.DAS.EmployerFinance.Web/ViewModels/Transfers/FinancialBreakdownViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
namespace SFA.DAS.EmployerFinance.Web.ViewModels.Transfers | ||
using System; | ||
|
||
namespace SFA.DAS.EmployerFinance.Web.ViewModels.Transfers | ||
{ | ||
public class FinancialBreakdownViewModel | ||
{ | ||
public decimal StartingTransferAllowance { get; set; } | ||
public string FinancialYearString { get; set; } | ||
public string HashedAccountID { get; set; } | ||
public long TransferConnections { get; set; } | ||
public decimal TransferConnections { get; set; } | ||
public decimal FundsIn { get; set; } | ||
public decimal Commitments { get; set; } | ||
public decimal ApprovedPledgeApplications { get; set; } | ||
public decimal AcceptedPledgeApplications { get; set; } | ||
public decimal PledgeOriginatedCommitments { get; set; } | ||
public DateTime ProjectionStartDate { get; set; } | ||
public int NumberOfMonths { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters