56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BS.Shared.Services.Data
|
|
{
|
|
//public class CostBearer2SupportConceptData
|
|
//{
|
|
// public DateTime? ApprovedEndDate { get; set; }
|
|
|
|
// public decimal? ApprovedFLS { get; set; }
|
|
|
|
// public decimal? ApprovedFLSTotal { get; set; }
|
|
|
|
// public DateTime? ApprovedStartDate { get; set; }
|
|
|
|
// public long? CostBearer2SupportConceptOid { get; set; }
|
|
|
|
// public List<CostRate> CostRateList { get; set; }
|
|
|
|
// public DateTime? EndDate
|
|
// {
|
|
// get
|
|
// {
|
|
// DateTime? end = this.ApprovedEndDate;
|
|
// if (end == null)
|
|
// {
|
|
// end = this.RequestedEndDate;
|
|
// }
|
|
|
|
// return end;
|
|
// }
|
|
// }
|
|
|
|
// public bool IsCalculatingWithFactor { get; set; }
|
|
|
|
// public decimal? MonthlyPayment { get; set; }
|
|
|
|
// public DateTime? RequestedEndDate { get; set; }
|
|
|
|
// public DateTime? RequestedStartDate { get; set; }
|
|
|
|
// public DateTime? StartDate
|
|
// {
|
|
// get
|
|
// {
|
|
// DateTime? start = this.ApprovedStartDate;
|
|
// if (start == null)
|
|
// {
|
|
// start = this.RequestedStartDate;
|
|
// }
|
|
|
|
// return start;
|
|
// }
|
|
// }
|
|
//}
|
|
} |