Exemplo n.º 1
0
 public AllocationModel(AllocationFundingStreamModel fundingStream, Period period, AllocationProviderModel provider, AllocationLine allocationLine,
                        int allocationVersionNumber, string status, decimal allocationAmount, string allocationResultId)
 {
     FundingStream           = fundingStream;
     Period                  = period;
     Provider                = provider;
     AllocationLine          = allocationLine;
     AllocationVersionNumber = allocationVersionNumber;
     AllocationStatus        = status;
     AllocationAmount        = allocationAmount;
     AllocationResultId      = allocationResultId;
 }
Exemplo n.º 2
0
 public AllocationWithHistoryModel(AllocationFundingStreamModel fundingStream, Period period, AllocationProviderModel provider, AllocationLine allocationLine,
                                   int allocationVersionNumber, string status, decimal allocationAmount, int?allocationLearnerCount, string allocationResultId, ProfilePeriod[] profilePeriods)
     : base(fundingStream, period, provider, allocationLine, allocationVersionNumber, status, allocationAmount, allocationResultId)
 {
     ProfilePeriods = profilePeriods;
 }