public User Find(string accountId)
        {
            var professor = _professorRepository.GetByAccountId(accountId);

            if (professor == null)
            {
                throw new NotFoundException("No se encontro el profesor");
            }
            return(professor);
        }