// 招生统计报表-按电话营销员、按月细化统计 public List<SalesTeamSummaryReport> GetSignUpSummaryReportBySalesmanAndMonth(int year, int salesmanId) { var ds = new ReportRepository(); var m = ds.GetSignUpSummaryReportBySalesmanAndMonth(year, salesmanId); return m; }