Beispiel #1
0
 public void EliminarCapRutaServicio(int Id_Emp, int Id_Cd, RutaServicio ruta, string Conexion, ref int verificador)
 {
     try
     {
         CD_CapRutaServicio claseCapRutaServicio = new CD_CapRutaServicio();
         claseCapRutaServicio.EliminarCapRutaServicio(Id_Emp, Id_Cd, ruta, Conexion, ref verificador);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #2
0
 public void ConsultaCapRutaServicio(int Id_Emp, int Id_Cd, string Conexion, ref List <RutaServicio> List)
 {
     try
     {
         CD_CapRutaServicio claseCapaDatos = new CD_CapRutaServicio();
         claseCapaDatos.ConsultaCapRutaServicio(Id_Emp, Id_Cd, Conexion, ref List);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }