Esempio n. 1
0
 public DataTable getCapa(DateTime d, int rit)
 {
     try
     {
         DAO = new CapaciteitDAO();
         return DAO.getCapa(d, rit).Tables[0];
     }
     catch (NullReferenceException ex)
     {
         return null;
     }
 }
Esempio n. 2
0
 public int updateCapa(CapaciteitData t)
 {
     DAO = new CapaciteitDAO();
     return DAO.updateCapa(t);
 }
Esempio n. 3
0
 public int addCapa(CapaciteitData t)
 {
     DAO = new CapaciteitDAO();
     return DAO.addCapa(t);
 }