public bool IsChequeNoPresent(string cashChequeNo)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }