// GET: Estado
 public ActionResult Index()
 {
     ViewBag.Breadcrumb = new Breadcrumb().GetBreadcrumb(this);
     EstadoBL bl = new EstadoBL();
     List<Model> models = bl.GetData();
     List<EstadoModels> estados = new List<EstadoModels>();
     models.ForEach(row => estados.Add((EstadoModels)row));
     return View(estados);
 }