예제 #1
0
 // 招生统计报表-按月统计各区域的量
 public List<SalesTeamSummaryReport> GetSignUpSummaryReportByMonthAndDistrict(int year, int month)
 {
     var ds = new ReportRepository();
     var m = ds.GetSignUpSummaryReportByMonthAndDistrict(year, month);
     return m;
 }