public List <AdjustDebitNoteEntity> GetDebitNotes(string SupplierId)
        {
            IAdjustDebitNoteBL           psBL          = new AdjustDebitNoteBL();
            List <AdjustDebitNoteEntity> debitnotelist = new List <AdjustDebitNoteEntity>();

            debitnotelist = psBL.GetDebitNotes(SupplierId);
            return(debitnotelist);
        }
        public IEnumerable <SupplierDetailEntity> GetAllSupplier()
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            IList <SupplierDetailEntity> SupplierList = new List <SupplierDetailEntity>();


            SupplierList = psBL.GetAllSupplier().ToList();
            return(SupplierList);
        }
        public AdjustDebitNoteForm AdjustDebitNoteDetails(string AdjustedNo)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.AdjustDebitNoteDetails(AdjustedNo));
        }
        public string GetLatestInvoiceNo()
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.GetLatestInvoiceNo());
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.IsChequeNoPresent(cashChequeNo));
        }
        public int UpdateAdjustDebitNote(AdjustDebitNoteForm psForm, int Type)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.UpdateAdjustDebitNote(psForm, Type));
        }
        public string GetCountOfPISuppliers()
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.GetCountOfPISuppliers());
        }
        public AdjustDebitNoteForm GetNewPS(int?SupplierID)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.GetNewPS(SupplierID));
        }
        public AdjustDebitNoteForm GetAdjustDebitNoteDetails(string cashChequeNo)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.GetAdjustDebitNoteDetails(cashChequeNo));
        }
示例#10
0
        public int SaveAdjustDebitNote(AdjustDebitNoteForm psForm)
        {
            IAdjustDebitNoteBL psBL = new AdjustDebitNoteBL();

            return(psBL.SaveAdjustDebitNote(psForm));
        }