Beispiel #1
0
 public DataTable GetCompleteTask(string billNo)
 {
     using (PersistentManager pm = new PersistentManager())
     {
         TaskDao taskDao = new TaskDao();
         return taskDao.FindCompleteTask(billNo);
     }
 }