public ActionResult Empresa(string id) { var context = new ContextService(); context.BaseDatos = id; using (var service = new StartupService(context, id)) { var serviceConfiguracion = new ConfiguracionService(context, service.Db); var estadoImportacion = serviceConfiguracion.GetCargaDatos(); EmpresaModel model; if (estadoImportacion == 2) { ViewBag.database = id; model = Helper.fModel.GetModel <EmpresaModel>(context, service.Db); model.EstadoImportacion = estadoImportacion; } else { model = new EmpresaModel(); model.EstadoImportacion = estadoImportacion; } return(View(model)); } }