Esempio n. 1
0
        public string GetLastCashNo()
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.GetLastCashNo());
        }
Esempio n. 2
0
        public string GetCountOfDNCustomer(out List <CustomerEntity> lstSuppliers)
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.GetCountOfCNCustomers(out lstSuppliers));
        }
Esempio n. 3
0
        public int SaveRefundToCustomer(RefundToCustomerForm psForm)
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.SavePaymentToSupplier(psForm));
        }
Esempio n. 4
0
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.IsChequeNoPresent(cashChequeNo));
        }
Esempio n. 5
0
        public RefundToCustomerForm GetNewPS(int?SupplierID)
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.GetNewPS(SupplierID));
        }
Esempio n. 6
0
        public RefundToCustomerForm GetRefundToCustomerDetails(string cashChequeNo)
        {
            IRefundToCustomersBL psBL = new RefundToCustomersBL();

            return(psBL.GetPaymentToSupplierDetails(cashChequeNo));
        }