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