/// <inheritdoc />
 public StorageMonitorService(
     IOptions <StorageMonitorOptions> options,
     ILogger <StorageMonitorService> logger,
     IMonitorService monitors,
     IMountService mountService)
     : base(options)
 {
     this.Monitors     = monitors;
     this.Logger       = logger;
     this.MountService = mountService;
 }
 public MountsController(IMapper mapper, IMountService mountService)
 {
     this.Mapper       = mapper;
     this.MountService = mountService;
 }
示例#3
0
 public FileService(MediaDataContext context, ILogger <FileService> logger, IMountService mounts)
 {
     this.Context = context;
     this.Logger  = logger;
     this.Mounts  = mounts;
 }