コード例 #1
0
        public List <AdjustCreditNoteEntity> GetCreditNotes(string CustomerId)
        {
            IAdjustCreditNoteDAl          psBL          = new AdjustCreditNoteDAl();
            List <AdjustCreditNoteEntity> debitnotelist = new List <AdjustCreditNoteEntity>();

            debitnotelist = psBL.GetCreditNotes(CustomerId);
            return(debitnotelist);
        }
コード例 #2
0
        public string GetCountOfSOCustomers()
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.GetCountOfSOCustomers());

            return(null);
        }
コード例 #3
0
        public IEnumerable <CustomerEntity> GetAllCustomer()
        {
            IAdjustCreditNoteDAl   psBL         = new AdjustCreditNoteDAl();
            IList <CustomerEntity> CustomerList = new List <CustomerEntity>();

            CustomerList = psBL.GetAllCustomer();
            return(CustomerList);
        }
コード例 #4
0
        public AdjustCreditNoteForm AdjustCreditNoteDetails(string cashChequeNo)
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.AdjustCreditNoteDetails(cashChequeNo));
        }
コード例 #5
0
        public string  GetLatestInvoiceNo()
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.GetLatestInvoiceNo());
        }
コード例 #6
0
        public int UpdateAdjustCreditNote(AdjustCreditNoteForm psForm, int Type)
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.UpdateAdjustCreditNote(psForm, Type));
        }
コード例 #7
0
        public AdjustCreditNoteForm GetNewPS(int?CustomerID)
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.GetNewPS(CustomerID));
        }
コード例 #8
0
        public bool IsChequeNoPresent(string cashChequeNo)
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.IsChequeNoPresent(cashChequeNo));
        }
コード例 #9
0
        public int SaveAdjustCreditNote(AdjustCreditNoteForm psForm)
        {
            IAdjustCreditNoteDAl psDAL = new AdjustCreditNoteDAl();

            return(psDAL.SaveAdjustCreditNote(psForm));
        }