Example #1
0
 public async Task <int> AddDonationRequest(DonationRequestModel model)
 {
     return(await _dataAccess.AddDonationRequest(model));
 }
Example #2
0
 public async Task <bool> UpdateDonationRequest(DonationRequestModel model)
 {
     return(await _dataAccess.UpdateDonationRequest(model));
 }