コード例 #1
0
        public DisciplineResultQueryList Handle(DisciplineInputGetByProfessor command)
        {
            var result = new DisciplineResultQueryList();

            result.Disciplines = _DREP.GetByProfessor(command.ProfessorId);
            return(result);
        }