Example #1
0
        public IActionResult UpdatePaymentType(int id, PaymentType paymentType)
        {
            var result = _storage.Update(id, paymentType);

            return(Ok(result));
        }
Example #2
0
 public IActionResult UpdatePaymentType(int id, PaymentType paymentType)
 {
     return(Ok(_storage.Update(id, paymentType)));
 }