public IActionResult Register(int ClientId, decimal Amount) { PaymentBLL paymentBLL = new PaymentBLL(); paymentBLL.RegisterPayment(ClientId, Amount); return(RedirectToAction("Index", "Clients")); }