Exemplo n.º 1
0
 public void Update(ServiceFeeContract serviceFeeContract)
 {
     _serviceFeeContractRepo.Update(serviceFeeContract);
 }
Exemplo n.º 2
0
 public void Delete(ServiceFeeContract serviceFeeContract)
 {
     _serviceFeeContractRepo.Delete(serviceFeeContract);
 }
Exemplo n.º 3
0
 public async Task Insert(ServiceFeeContract serviceFeeContract)
 {
     await _serviceFeeContractRepo.InsertAsync(serviceFeeContract);
 }