public LessonApplicationManagementService(
     ILessonApplicationRepository repository,
     INotificationTransfer notificationTransfer)
 {
     _repository = repository;
     _notificationTransfer = notificationTransfer;
 }
 public LessonApplicationDisplayingService(ILessonApplicationRepository repository)
 {
     _repository = repository;
 }