//Para obtener por ID public Profesores obtenerPorId(int id) { try { return(profesoresDal.obtenerPorID(id)); } catch (Exception ex) { throw; } }
//Para obtener por ID public Profesores obtenerPorId(int id) { try { using (MyDbContext context = new MyDbContext()) { //crear instancia de la DAL y se pasa el contexto de la bd ProfesoresDAL dal = new ProfesoresDAL(context); //llamada al metodo para obtener todos los registros return(dal.obtenerPorID(id)); } } catch (Exception ex) { throw; } }