示例#1
0
 public List <UserTypeEntity> GetUserTypes(int start, int length, string sortColumn, string sortDir, string searchTerm, out int totalRecords)
 {
     return(userTypeDAL.GetUserTypes(start, length, sortColumn, sortDir, searchTerm, out totalRecords));
 }
示例#2
0
 public List <UserType> GetUserTypes()
 {
     return(dal.GetUserTypes());
 }
 public List <UserTypeEntity> GetUserTypes()
 {
     return(userTypeDAL.GetUserTypes());
 }