예제 #1
0
 public StudentController(
     ICrudService <Student, Guid> studentCrudService,
     IStudentValidationService studentValidationService)
 {
     _studentCrudService       = studentCrudService;
     _studentValidationService = studentValidationService;
 }
예제 #2
0
 public DefaultStudentValidator(IStudentValidationService studentValidationService)
 {
     _studentValidationService = studentValidationService;
 }