예제 #1
0
        public IActionResult Register(int ClientId, decimal Amount)
        {
            PaymentBLL paymentBLL = new PaymentBLL();

            paymentBLL.RegisterPayment(ClientId, Amount);
            return(RedirectToAction("Index", "Clients"));
        }