예제 #1
0
 public async Task <TaxResponse> AddTax(TaxEntity entity)
 {
     return(new TaxResponse
     {
         message = await _taxRepository.AddTax(entity) + " Tax information added",
         taxRate = entity.taxAmount,
         municipilityName = entity.municipalityName,
     });
 }