コード例 #1
0
ファイル: UserReport.cs プロジェクト: Quad0ngit/TimeTracker
 public static List<UserReport> GetCliUserReportsByProjectIdAndMonthAndYear(int projectId, Int32 Month, Int32 Year)
 {
     CustomDAO objCustomDAO = new CustomDAO();
     return (objCustomDAO.GetClientWiseUserReportsByProjectIdAndMonthAndYear(projectId, Month, Year));
 }