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

            debitnotelist = psBL.GetDebitNotes(SupplierId);
            return(debitnotelist);
        }
        public IEnumerable <SupplierDetailEntity> GetAllSupplier()
        {
            IAdjustDebitNoteDAl          psBL         = new AdjustDebitNoteDAl();
            IList <SupplierDetailEntity> SupplierList = new List <SupplierDetailEntity>();

            SupplierList = psBL.GetAllSupplier();
            return(SupplierList);
        }
        public AdjustDebitNoteForm AdjustDebitNoteDetails(string AdjustedNo)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.AdjustDebitNoteDetails(AdjustedNo));
        }
        public string GetLatestInvoiceNo()
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.GetLatestInvoiceNo());
        }
        public string GetCountOfPISuppliers()
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.GetCountOfPISuppliers());
        }
        public int UpdateAdjustDebitNote(AdjustDebitNoteForm psForm, int Type)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.UpdateAdjustDebitNote(psForm, Type));
        }
        public AdjustDebitNoteForm GetNewPS(int?SupplierID)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.GetNewPS(SupplierID));
        }
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }
        public AdjustDebitNoteForm GetAdjustDebitNoteDetails(string cashChequeNo)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.GetAdjustDebitNoteDetails(cashChequeNo));
        }
Beispiel #10
0
        public int SaveAdjustDebitNote(AdjustDebitNoteForm psForm)
        {
            IAdjustDebitNoteDAl psDAL = new AdjustDebitNoteDAl();

            return(psDAL.SaveAdjustDebitNote(psForm));
        }