public IEnumerable <Docente> GetByDepartamento(int dptoId)
 {
     return(_docenteRepository.FindBy(x => x.Departamento.Id == dptoId));
 }