Esempio n. 1
0
 public static UserProfileEntity GetUserProfile(string sscid)
 {
     return(WebApiHelper.GetCoreObject <UserProfileEntity>("User/GetUserProfile", new TheSscRequest(sscid)));
 }
Esempio n. 2
0
 public static UserEntity GetUserById(Guid id)
 {
     return(WebApiHelper.GetCoreObject <UserEntity>("User/GetUserByUserId", new TheSscRequest(id)));
 }
Esempio n. 3
0
 public static UserEntity GetUserByUsername(string username)
 {
     return(WebApiHelper.GetCoreObject <UserEntity>("User/GetUserByUsername", new TheSscRequest(username)));
 }
Esempio n. 4
0
 public static bool CheckUserIsStudent(Guid userid)
 {
     return(WebApiHelper.GetCoreObject <bool>("User/CheckUserIsStudent", new TheSscRequest(userid)));
 }