public string GetLastCashNo()
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.GetLastCashNo());
        }
        public string GetCountOfPISuppliers(out List <CustomerEntity> lstCustomers)
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.GetCountOfPISuppliers(out lstCustomers));
        }
        public int SavePaymentFromCustomer(PaymentFromCustomerForm psForm)
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.SavePaymentToSupplier(psForm));
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.IsChequeNoPresent(cashChequeNo));
        }
        public PaymentFromCustomerForm GetNewPS(int?SupplierID)
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.GetNewPS(SupplierID));
        }
        public PaymentFromCustomerForm GetPaymentFromCustomerDetails(string cashChequeNo)
        {
            IPaymentFromCustomersBL psBL = new PaymentFromCustomersBL();

            return(psBL.GetPaymentToSupplierDetails(cashChequeNo));
        }