Exemplo n.º 1
0
 public void DEL_Dueno_Mascota(int Codigo_Dueno, int Codigo_Mascota)
 {
     try
     {
         LOG_Dueno_Mascota Logica = new LOG_Dueno_Mascota();
         Logica.DEL_Dueno_Mascota(Codigo_Dueno,Codigo_Mascota);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 2
0
        public Boolean CRE_Dueno_Mascota(MOD_Dueno_Mascota obj)
        {
            try
            {
                LOG_Dueno_Mascota Logica = new LOG_Dueno_Mascota();
                Logica.CRE_Dueno_Mascota(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Exemplo n.º 3
0
 public String SEL_Mascota_Dueno(int codigo_mascota)
 {
     try
     {
         LOG_Dueno_Mascota logica = new LOG_Dueno_Mascota();
         String obj = logica.SEL_Mascota_Dueno(codigo_mascota);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 4
0
 public void UPD_Dueno_Mascota(MOD_Dueno_Mascota obj)
 {
     try
     {
         LOG_Dueno_Mascota Logica = new LOG_Dueno_Mascota();
         Logica.UPD_Dueno_Mascota(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Exemplo n.º 5
0
 public List<MOD_Dueno_Mascota> SEL_GRID_Dueno_Mascota()
 {
     try
     {
         LOG_Dueno_Mascota logica = new LOG_Dueno_Mascota();
         List<MOD_Dueno_Mascota> Lista = logica.SEL_Grid_Dueno_Mascota();
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }