示例#1
0
 public void ConsultaSegmentos(int Id_Emp, int Id_Seg, string Conexion, ref List <Segmentos> List)
 {
     try
     {
         CD_CatSegmentos claseCapaDatos = new CD_CatSegmentos();
         claseCapaDatos.ConsultaSegmentos(Id_Emp, Id_Seg, Conexion, ref List);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
 public void ConsultaSegmento_Usuario(ref List <Segmentos> list, int Id_Emp, int?Id_U, string Conexion)
 {
     try
     {
         CD_CatSegmentos claseCapaDatos = new CD_CatSegmentos();
         claseCapaDatos.ConsultaSegmento_Usuario(ref list, Id_Emp, Id_U, Conexion);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#3
0
 public void ModificarSegmentos(Segmentos segmento, string Conexion, ref int verificador)
 {
     try
     {
         CD_CatSegmentos claseCapaDatos = new CD_CatSegmentos();
         claseCapaDatos.ModificarSegmentos(segmento, Conexion, ref verificador);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }