public ActionResult StatementDeductFromAccount(int customerId, int statementId, decimal amount, string note)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            cpr.sDeductFromAccount(customerId, statementId, amount, note);
            return(null);
        }