public string GetLastCashNo()
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.GetLastCashNo());
        }
        public string GetCountOfCNCustomers(out List <CustomerEntity> lstSuppliers)
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.GetCountOfCNCustomers(out lstSuppliers));
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }
        public int UpdatePaymentToSupplier(RefundToCustomerForm psForm)
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.UpdateRefundToCustomer(psForm));
        }
        public RefundToCustomerForm GetNewPS(int?SupplierID)
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.GetNewPS(SupplierID));
        }
        public RefundToCustomerForm GetPaymentToSupplierDetails(string cashChequeNo)
        {
            IRefundToCustomersDAL psDAL = new RefundToCustomersDAL();

            return(psDAL.GetRefundToCustomerDetails(cashChequeNo));
        }