public void LoadEstudiosSP(int?id, DenunciaModelView model) { var estudiosPorOrganismo = new List <EstudioRelSP>(); var organismoId = Convert.ToInt32(id); using (NuevoDbContext context = new NuevoDbContext()) { estudiosPorOrganismo = context.Database .SqlQuery <EstudioRelSP>("GetEstudiosRelPorOrganismoId", new SqlParameter("@organismoId", organismoId)) .ToList(); } model.Estudios = estudiosPorOrganismo.Select(p => new SelectListItem { Text = p.Estudio, Value = p.EstudioRelacionId.ToString() }); }
public DenunciasContainerModel(DenunciaModelView model) { this.denunciasModelView = model; }