public List <StudentLogEntityDC> GetAllStudentLogs(string Search, string AccountID, string StartDate, string EndDate, int PageIndex, int PageSize, out int Count) { List <StudentLogEntityDC> productResponse = new List <StudentLogEntityDC>(); StudentLogEntityDC member = new StudentLogEntityDC(); LogDAL LogsDAL = new LogDAL(); productResponse = LogsDAL.GetAllStudentLogs(Search, AccountID, StartDate, EndDate, PageIndex, PageSize, out Count); return(productResponse); }