public LessonRegistrationManagementService(
     ILessonRegistrationRepository repository,
     INotificationTransfer notificationTransfer)
 {
     _repository = repository;
     _notificationTransfer = notificationTransfer;
 }
 public LessonRegistrationDisplayingService(ILessonRegistrationRepository repository)
 {
     _repository = repository;
 }