Example #1
0
 public OrderNewLessonByStudentRequestHandler(IAsyncUserService userService,
                                              IAsyncStudentService studentService,
                                              IIdentityService identityService,
                                              IPushNotificationService pushNotificationService)
     : base(userService, studentService, identityService)
 {
     _pushNotificationService = pushNotificationService;
 }
Example #2
0
 protected BaseStudentRequestHandler(IAsyncUserService userService,
                                     IAsyncStudentService studentService,
                                     IIdentityService identityService)
 {
     _userService     = userService;
     _studentService  = studentService;
     _identityService = identityService;
 }
Example #3
0
 protected BaseTutorRequestHandler(IAsyncUserService userService,
                                   IAsyncTutorService tutorService,
                                   IIdentityService identityService)
 {
     _userService     = userService;
     _tutorService    = tutorService;
     _identityService = identityService;
 }
 public GetLessonsHistoryForStudentRequestHandler(IAsyncUserService userService,
                                                  IAsyncStudentService studentService,
                                                  IIdentityService identityService)
     : base(userService, studentService, identityService)
 {
 }
Example #5
0
 public UpdateTutorLearningProfileRequestHandler(IAsyncUserService userService,
                                                 IAsyncTutorService tutorService,
                                                 IIdentityService identityService)
     : base(userService, tutorService, identityService)
 {
 }
 public DeleteUserProfileRequestHandler(IAsyncUserService userService,
                                        IIdentityService identityService) : base(userService, identityService)
 {
 }
Example #7
0
 public CancelLessonByStudentRequestHandler(IAsyncUserService userService,
                                            IAsyncStudentService studentService,
                                            IIdentityService identityService)
     : base(userService, studentService, identityService)
 {
 }
 public GetLessonsHistoryForTutorRequestHandler(IAsyncUserService userService,
                                                IAsyncTutorService tutorService,
                                                IIdentityService identityService)
     : base(userService, tutorService, identityService)
 {
 }
Example #9
0
 public CancelLessonByTutorRequestHandler(IAsyncUserService userService,
                                          IAsyncTutorService tutorService,
                                          IIdentityService identityService)
     : base(userService, tutorService, identityService)
 {
 }
Example #10
0
 public UserController(IAsyncUserService userService)
 {
     _userService = userService;
 }
 public GetTutorsForLessonTopicCategoryRequestHandler(IAsyncUserService userService,
                                                      IAsyncTutorService tutorService,
                                                      IIdentityService identityService)
     : base(userService, tutorService, identityService)
 {
 }
Example #12
0
 protected BaseUserRequestHandler(IAsyncUserService userService,
                                  IIdentityService identityService)
 {
     _userService     = userService;
     _identityService = identityService;
 }