public string GetLastCashNo()
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.GetLastCashNo());
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.IsChequeNoPresent(cashChequeNo));
        }
        public int UpdateRefundFromSupplier(RefundFromSupplierForm psForm)
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.UpdateRefundFromSupplier(psForm));
        }
        public string GetCountOfDNSuppliers(out List <SupplierDetailEntity> lstSuppliers)
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.GetCountOfDNSuppliers(out lstSuppliers));
        }
        public RefundFromSupplierForm GetNewPS(int?SupplierID)
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.GetNewPS(SupplierID));
        }
        public RefundFromSupplierForm GetRefundFromSupplierDetails(string cashChequeNo)
        {
            IRefundFromSupplierBL psBL = new RefundFromSupplierBL();

            return(psBL.GetRefundFromSupplierDetails(cashChequeNo));
        }