Exemplo n.º 1
0
 public void DEL_Expediente(int Codigo_Expediente, int Codigo_Centro_Atencion)
 {
     try
     {
         LOG_Expediente Logica = new LOG_Expediente();
         Logica.DEL_Expediente(Codigo_Expediente, Codigo_Centro_Atencion);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 2
0
        public Boolean CRE_Expediente(MOD_Expediente obj)
        {
            try
            {
                LOG_Expediente Logica = new LOG_Expediente();
                Logica.CRE_Expediente(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Exemplo n.º 3
0
 public void UPD_Expediente(MOD_Expediente obj)
 {
     try
     {
         LOG_Expediente Logica = new LOG_Expediente();
         Logica.UPD_Expediente(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 4
0
 public MOD_Expediente SEL_GRID_Expediente_BY_ID_Mascota(int Codigo_Mascota, int Codigo_Centro)
 {
     try
     {
         LOG_Expediente logica = new LOG_Expediente();
         MOD_Expediente obj = logica.SEL_Grid_Expediente_By_Id_Mascota(Codigo_Mascota, Codigo_Centro);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 5
0
 public List<MOD_Expediente> SEL_GRID_Expediente(int codigo, string buscar)
 {
     try
     {
         LOG_Expediente logica = new LOG_Expediente();
         List<MOD_Expediente> Lista = logica.SEL_Grid_Expediente(codigo,buscar);
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 6
0
 public int SEL_ExpedienteByMascotaByCentroAtencion(int codigo_mascota, int codigo_centro_atencion)
 {
     try
     {
         LOG_Expediente logica = new LOG_Expediente();
         int cant = 0;
         cant = logica.SEL_ExpedienteByMascotaByCentroAtencion(codigo_mascota, codigo_centro_atencion);
         return cant;
     }
     catch (Exception )
     {
         throw ;
     }
 }