Ejemplo n.º 1
0
 public PAIS CargarPais(int id)
 {
     try
     {
         PaisDAL paisDAL = new PaisDAL();
         return(paisDAL.CargarPais(id));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
        public List <Pais> cargarPais()
        {
            PaisDAL pais = new PaisDAL();

            return(pais.CargarPais());
        }