Beispiel #1
0
        public string GetLastCashNo()
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.GetLastCashNo());
        }
Beispiel #2
0
        public List <AccountsEntity> GetAccountDetails()
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.GetAccountDetails());
        }
Beispiel #3
0
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.IsChequeNoPresent(cashChequeNo));
        }
Beispiel #4
0
        public int UpdatePaymentToSupplier(PaymentToSupplierForm psForm)
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.UpdatePaymentToSupplier(psForm));
        }
Beispiel #5
0
        public string GetCountOfPISuppliers(out List <SupplierDetailEntity> lstSuppliers)
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.GetCountOfPISuppliers(out lstSuppliers));
        }
Beispiel #6
0
        public PaymentToSupplierForm GetNewPS(int?SupplierID)
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.GetNewPS(SupplierID));
        }
Beispiel #7
0
        public PaymentToSupplierForm GetPaymentToSupplierDetails(string cashChequeNo)
        {
            IPaymentToSupplierBL psBL = new PaymentToSupplierBL();

            return(psBL.GetPaymentToSupplierDetails(cashChequeNo));
        }