예제 #1
0
 public void deleteTipo(tipo_trayecto_Entity tip)
 {
     try
     {
         tipo_trayecto_DAL tipo = new tipo_trayecto_DAL();
         tipo.deletetipo(tip);
     }
     catch (Exception ex)
     {
         String error = ex.ToString();
     }
 }
예제 #2
0
 public void insertTipo(tipo_trayecto_Entity tip)
 {
     try
     {
         tipo_trayecto_DAL tipo = new tipo_trayecto_DAL();
         tipo.inserttipotrayecto(tip);
     }
     catch (Exception ex)
     {
         String error = ex.ToString();
     }
 }