public ActionResult AddStatementPayment(int customerId, int statementId, decimal amount, string paymentNote) { CakesPosRepository cpr = new CakesPosRepository(_connectionString); cpr.AddStatementPayment(customerId, statementId, amount, paymentNote); return(null); }