public DisciplineResultQueryList Handle(DisciplineInputGetByProfessor command) { var result = new DisciplineResultQueryList(); result.Disciplines = _DREP.GetByProfessor(command.ProfessorId); return(result); }