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