Esempio n. 1
0
 public static List <UserTypeEntity> GetUserTypeByUserInRole(Guid userid)
 {
     return(WebApiHelper.GetListCoreObject <UserTypeEntity>("User/GetUserTypeByUserInRole", new TheSscRequest(userid)));
 }
Esempio n. 2
0
 public static bool CheckUserIsStudent(Guid userid)
 {
     return(WebApiHelper.GetCoreObject <bool>("User/CheckUserIsStudent", new TheSscRequest(userid)));
 }
Esempio n. 3
0
 public static List <UserTypeEntity> GetAllUserTypes()
 {
     return(WebApiHelper.GetListCoreObject <UserTypeEntity>("User/GetUserTypeAll", new TheSscRequest()));
 }