Beispiel #1
0
 public void InsertReturnInBillMaster(string billNo, string memo)
 {
     using (PersistentManager pm = new PersistentManager())
     {
         DownInBillDao dao = new DownInBillDao();
         dao.SetPersistentManager(pm);
         dao.InsertReturnInBillMaster(billNo, memo);
     }
 }