Пример #1
0
 /// <summary>
 /// Gets the report data for monthly cost by district report
 /// </summary>
 /// <returns>a list of reportrow to construct a report</returns>
 public IEnumerable <ReportRow> printMonthlyCostByDistrict(Guid districtId)
 {
     return(ReportDataAccess.monthlyCostForDistrict(districtId).Select(c => new ReportRow(c)).ToList());
 }
Пример #2
0
 /// <summary>
 /// Gets the report data for monthly cost by district report
 /// </summary>
 /// <returns>a list of reportrow to construct a report</returns>
 public IEnumerable <ReportRow> printMonthlyCostByDistrict(Guid districtId)
 {
     return(ReportDataAccess.monthlyCostForDistrict(districtId, (int)InterventionState.Completed).Select(c => new ReportRow(c)).ToList());
 }