public IEnumerable<PeriodoModel> GetPeriodoInfo(string id) { Asistentes_TutoresEntities datos = new Asistentes_TutoresEntities(); var lista = datos.SP_GetPeriodoInfo(Int32.Parse(id)); List<PeriodoModel> periodos = new List<PeriodoModel>(); foreach (var per in lista) { PeriodoModel periodo = new PeriodoModel("", per.Fecha_Inicio.ToString("dd-MM-yyyy"),per.Fecha_Fin.ToString("dd-MM-yyyy"), per.Modalidad, ""); periodos.Add(periodo); } return periodos; }