Beispiel #1
0
 public static DataSet GetEstados()
 {
     try
     {
         return(EstadosDAL.getInstance().GetEstados());
     }
     catch (Exception ex)
     {
         throw;
     }
 }
Beispiel #2
0
 public EstadosBLL()
 {
     this.dataAccess = new EstadosDAL();
 }
        // GET: Estados
        public ActionResult Index()
        {
            var estados = EstadosDAL.Obtener_Estados();

            return(View(estados));
        }