public CKManagerBaseController(IFileManagerClient client, ITranslator translator, ILogger logger, IExceptionLogger exceptionLogger, INotificationService notification) : base(translator)
 {
     this.client          = client;
     this.logger          = logger;
     this.exceptionLogger = exceptionLogger;
     this.notification    = notification;
 }
 public FoldersController(IFileManagerClient client,
                          ITranslator translator,
                          ILogger logger,
                          IExceptionLogger exceptionLogger,
                          INotificationService notification) : base(client, translator, logger, exceptionLogger, notification)
 {
 }