Esempio n. 1
0
        public string GetLastCashNo()
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.GetLastCashNo());
        }
Esempio n. 2
0
        public List <AccountsEntity> GetAccountDetails()
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.GetAccountDetails());
        }
Esempio n. 3
0
        public string GetCountOfPISuppliers(out List <SupplierDetailEntity> lstSuppliers)
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.GetCountOfPISuppliers(out lstSuppliers));
        }
Esempio n. 4
0
        public int UpdatePaymentToSupplier(PaymentToSupplierForm psForm)
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.UpdatePaymentToSupplier(psForm));
        }
Esempio n. 5
0
        public PaymentToSupplierForm GetNewPS(int?SupplierID)
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.GetNewPS(SupplierID));
        }
Esempio n. 6
0
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }
Esempio n. 7
0
        public PaymentToSupplierForm GetPaymentToSupplierDetails(string cashChequeNo)
        {
            IPaymentToSupplierDAl psDAL = new PaymentToSupplierDAl();

            return(psDAL.GetPaymentToSupplierDetails(cashChequeNo));
        }