Exemplo n.º 1
0
 public async Task <bool> DeleteMainCommentAsync(int id)
 {
     return(await _httpService.DeleteHelperAsync <bool>($"{CommentClientEndpoints.MainBase}/{id}"));
 }
 public async Task <bool> DeleteAsync(int id)
 {
     return(await _httpService.DeleteHelperAsync <bool>($"{CustomerReviewClientEndpoints.Base}/{id}"));
 }
Exemplo n.º 3
0
 public async Task <bool> DeleteUserAsync(int id)
 {
     return(await _httpService.DeleteHelperAsync <bool>($"{AccountClientEndpoints.Base}/{id}"));
 }
 public async Task <bool> DeleteAsync(int id)
 {
     return(await _httpService.DeleteHelperAsync <bool>($"{NotificationReceiverClientEndpoints.Base}/{id}"));
 }