Beispiel #1
0
 public DebitNoteForm GetDebitNoteDetails(string debitNoteNo)
 {
     try
     {
         IDebitNoteDAL debitNoteDAL = new DebitNoteDAL();
         return(debitNoteDAL.GetDebitNoteDetails(debitNoteNo));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #2
0
 public void UpdateDebitNote(DebitNoteForm debitNote)
 {
     try
     {
         IDebitNoteDAL debitNoteDAL = new DebitNoteDAL();
         debitNoteDAL.UpdateDebitNote(debitNote);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
        public DebitNoteForm GetPrintDebitNote(string pqNo)
        {
            IDebitNoteDAL debitNoteDAL = new DebitNoteDAL();

            return(debitNoteDAL.GetPrintDebitNote(pqNo));
        }