示例#1
0
        public EnrollmentResultQueryList Handle(EnrollmentInputGetPreEnrollments command)
        {
            var result = new EnrollmentResultQueryList();

            result.Enrollment = _EREP.GetPreEnrollments();
            return(result);
        }
示例#2
0
        public EnrollmentResultQueryList Handle(EnrollmentInputListByStudent command)
        {
            var result = new EnrollmentResultQueryList();

            result.Enrollment = _EREP.GetByStudent(command.StudentId);

            return(result);
        }