Beispiel #1
0
 public async Task Update <T>(T model)
 {
     await _client.PostRequest(UpdateAction, model);
 }
Beispiel #2
0
 public async Task AddClaim(string userId, string type, string value)
 {
     await _client.PostRequest(AddClaimAction, new AddClaimModel { Type = type, Value = value, UserId = userId });
 }