예제 #1
0
 public static List <UserEntity> GetUserRangeByType(Guid type, int limit)
 {
     return(WebApiHelper.GetListCoreObject <UserEntity>("User/GetUserAll", new TheSscRequest(type, limit)));
 }
예제 #2
0
 public static List <UserEntity> GetAllUserByType(Guid type, Guid userid)
 {
     return(WebApiHelper.GetListCoreObject <UserEntity>("User/GetUserByTypeAndUser", new TheSscRequest(type, userid)));
 }
예제 #3
0
 public static List <UserEntity> GetAllUsers()
 {
     return(WebApiHelper.GetListCoreObject <UserEntity>("User/GetUserAll", new TheSscRequest()));
 }
예제 #4
0
 public static List <UserEntity> GetUserRange(int pageIndex, int pageSize)
 {
     return(WebApiHelper.GetListCoreObject <UserEntity>("User/GetUserAll", new TheSscRequest(pageIndex, pageSize)));
 }
예제 #5
0
 public static List <UserTypeEntity> GetUserTypeByUserInRole(Guid userid)
 {
     return(WebApiHelper.GetListCoreObject <UserTypeEntity>("User/GetUserTypeByUserInRole", new TheSscRequest(userid)));
 }