public static List <PI_BA_Convocatoria> GetConvocatoriasPremio(string idPremio) { using (var dbContext = new wPremiosInstitucionalesdbEntities()) { try { return(dbContext.GetMostRecentConvocatoria(idPremio).ToList()); } catch (Exception Ex) { Console.WriteLine("Catched Exception: " + Ex.Message + Environment.NewLine); return(null); } } }