예제 #1
0
 public FilesController(IMFilesVaultService mfvaultService, IMFObjectService mfobjService,
                        ISharedFileService fileshareService, IAuthenticationManager authManager)
     : base(authManager)
 {
     _mfvaultService   = mfvaultService;
     _mfobjService     = mfobjService;
     _fileshareService = fileshareService;
 }
예제 #2
0
 public HomeController(IFileService _fileService, IStorageService _storageService,
                       ISharedFileService _sharedService, IMapper _mapper)
 {
     fileService    = _fileService;
     sharedService  = _sharedService;
     storageService = _storageService;
     mapper         = _mapper;
 }
예제 #3
0
 public ManageController(IFileService _fileService, IStorageService _storageService,
                         ISharedFileService _sharedService, IUserService _userService, IMapper _mapper)
 {
     fileService    = _fileService;
     sharedService  = _sharedService;
     storageService = _storageService;
     userService    = _userService;
     mapper         = _mapper;
 }
예제 #4
0
 public FilesController(ISharedFileService shareService)
 {
     _shareService = shareService;
 }
 public SharedFileController(ISharedFileService _sharedService, IMapper _mapper)
 {
     sharedService = _sharedService;
     mapper        = _mapper;
 }
 public SharedFileController(ISharedFileService <int, SharedFileModelApi <int>, StoredFileModelApi <int> > sharedFileService)
 {
     this._sharedFileService = sharedFileService;
 }
예제 #7
0
 public SharedFilesController(ISharedFileService sharedFilesService, IWebHostEnvironment webHostEnvironment)
 {
     _sharedFilesService = sharedFilesService;
     _webHostEnvironment = webHostEnvironment;
 }