Ejemplo n.º 1
0
        public EnrollmentResultQueryList Handle(EnrollmentInputGetPreEnrollments command)
        {
            var result = new EnrollmentResultQueryList();

            result.Enrollment = _EREP.GetPreEnrollments();
            return(result);
        }
Ejemplo n.º 2
0
        public EnrollmentResultQueryList Handle(EnrollmentInputListByStudent command)
        {
            var result = new EnrollmentResultQueryList();

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

            return(result);
        }