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