示例#1
0
 public async Task Put(TransactionModel transaction)
 {
     await restClient.Put(Endpoints.Transaction.TRANSACTION, transaction);
 }
示例#2
0
 public async Task Update(AccountModel account)
 {
     var api = Endpoints.Accounts.ACCOUNT;
     await restClient.Put <AccountPageModel>(api, account);
 }
示例#3
0
 public async Task UpdateNotification(NotificationModel notificationModel)
 {
     var api = $"{Endpoints.Notifications.Notification}";
     await restClient.Put(api, notificationModel);
 }