protected BaseStudentRequestHandler(IAsyncUserService userService, IAsyncStudentService studentService, IIdentityService identityService) { _userService = userService; _studentService = studentService; _identityService = identityService; }
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) { }
public CancelLessonByStudentRequestHandler(IAsyncUserService userService, IAsyncStudentService studentService, IIdentityService identityService) : base(userService, studentService, identityService) { }