Ejemplo n.º 1
0
 public void DEL_Centro_Atencion(int Codigo)
 {
     try
     {
         LOG_Centro_Atencion Logica = new LOG_Centro_Atencion();
         Logica.DEL_Centro_Atencion(Codigo);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Ejemplo n.º 2
0
 public void UPD_Centro_Atencion(MOD_Centro_Atencion obj)
 {
     try
     {
         LOG_Centro_Atencion Logica = new LOG_Centro_Atencion();
         Logica.UPD_Centro_Atencion(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Ejemplo n.º 3
0
 public MOD_Centro_Atencion SEL_GRID_BY_ID_Centro_Atencion(int Codigo_Centro_Atencion)
 {
     try
     {
         LOG_Centro_Atencion logica = new LOG_Centro_Atencion();
         MOD_Centro_Atencion obj = logica.SEL_Grid_By_Id_Centro_Atencion(Codigo_Centro_Atencion);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Ejemplo n.º 4
0
 public List<MOD_Centro_Atencion> SEL_GRID_Centro_Atencion(int codigo_centro, string buscar)
 {
     try
     {
         LOG_Centro_Atencion logica = new LOG_Centro_Atencion();
         List<MOD_Centro_Atencion> Lista = logica.SEL_Grid_Centro_Atencion(codigo_centro, buscar);
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Ejemplo n.º 5
0
 public Boolean CRE_Centro_Atencion(MOD_Centro_Atencion obj)
 {
     try
     {
         LOG_Centro_Atencion Logica = new LOG_Centro_Atencion();
         Logica.CRE_Centro_Atencion(obj);
         return true;
     }
     catch (Exception )
     {
         return false;
         throw ;
     }
 }