// 招生统计报表-按组按月统计各组员的量 public List<SalesTeamSummaryReport> GetSignUpSummaryReportByMonthAndSalesman(int year, int month, int teamId) { var ds = new ReportRepository(); var m = ds.GetSignUpSummaryReportByMonthAndSalesman(year, month, teamId); return m; }