Ejemplo n.º 1
0
 public IActionResult AddPaymentType([FromBody] PaymentTypeMaster paymentType)
 {
     _masterService.AddPaymentOption(paymentType);
     return(Ok());
 }
Ejemplo n.º 2
0
 public async Task AddPaymentOption(PaymentTypeMaster paymentType)
 {
     await this._paymentTypeMasterRepository.Insert(paymentType);
 }