コード例 #1
0
 protected BaseStudentRequestHandler(IAsyncUserService userService,
                                     IAsyncStudentService studentService,
                                     IIdentityService identityService)
 {
     _userService     = userService;
     _studentService  = studentService;
     _identityService = identityService;
 }
コード例 #2
0
 public OrderNewLessonByStudentRequestHandler(IAsyncUserService userService,
                                              IAsyncStudentService studentService,
                                              IIdentityService identityService,
                                              IPushNotificationService pushNotificationService)
     : base(userService, studentService, identityService)
 {
     _pushNotificationService = pushNotificationService;
 }
 public GetLessonsHistoryForStudentRequestHandler(IAsyncUserService userService,
                                                  IAsyncStudentService studentService,
                                                  IIdentityService identityService)
     : base(userService, studentService, identityService)
 {
 }
コード例 #4
0
 public CancelLessonByStudentRequestHandler(IAsyncUserService userService,
                                            IAsyncStudentService studentService,
                                            IIdentityService identityService)
     : base(userService, studentService, identityService)
 {
 }