public string GetLastCashNo()
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.GetLastCashNo());
        }
        public string GetCountOfPISuppliers(out List <CustomerEntity> lstCustomers)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.GetCountOfPISuppliers(out lstCustomers));
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }
        public int UpdatePaymentToSupplier(PaymentFromCustomerForm psForm)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.UpdatePaymentToSupplier(psForm));
        }
        public PaymentFromCustomerForm GetNewPS(int?SupplierID)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.GetNewPS(SupplierID));
        }
        public PaymentFromCustomerForm GetPaymentToSupplierDetails(string cashChequeNo)
        {
            IPaymentFromCustomersDAL psDAL = new PaymentFromCustomersDAL();

            return(psDAL.GetPaymentFromCustomerDetails(cashChequeNo));
        }