Пример #1
0
        public StudentResultQueryList Handle(StudentInputListByDiscipline command)
        {
            var result = new StudentResultQueryList();

            result.Students = _SREP.GetByDiscipline(command.DisciplineId);

            return(result);
        }
Пример #2
0
        public StudentResultQueryList Handle(StudentInputList command)
        {
            var result = new StudentResultQueryList();

            result.Students = _SREP.List();

            return(result);
        }