public FillStateService(IOptions <NotificationSettings> notificationSettings,
                         IDocumentStorageService documentStorageService, IEnumerable <INotificationStrategy> notificationStrategies)
 {
     _notificationSettings   = notificationSettings.Value;
     _documentStorageService = documentStorageService;
     _notificationStrategies = notificationStrategies;
 }
 public DocumentsController(IDocumentStorageService documentStorageService)
 {
     _documentStorageService = documentStorageService;
 }