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