コード例 #1
0
ファイル: UserApiHelper.cs プロジェクト: trquth/CallAPI
 public static UserProfileEntity GetUserProfile(string sscid)
 {
     return(WebApiHelper.GetCoreObject <UserProfileEntity>("User/GetUserProfile", new TheSscRequest(sscid)));
 }
コード例 #2
0
ファイル: UserApiHelper.cs プロジェクト: trquth/CallAPI
 public static UserEntity GetUserById(Guid id)
 {
     return(WebApiHelper.GetCoreObject <UserEntity>("User/GetUserByUserId", new TheSscRequest(id)));
 }
コード例 #3
0
ファイル: UserApiHelper.cs プロジェクト: trquth/CallAPI
 public static UserEntity GetUserByUsername(string username)
 {
     return(WebApiHelper.GetCoreObject <UserEntity>("User/GetUserByUsername", new TheSscRequest(username)));
 }
コード例 #4
0
ファイル: UserApiHelper.cs プロジェクト: trquth/CallAPI
 public static bool CheckUserIsStudent(Guid userid)
 {
     return(WebApiHelper.GetCoreObject <bool>("User/CheckUserIsStudent", new TheSscRequest(userid)));
 }