Exemple #1
0
 public FileWorkController(IFileService fileService, IFileCategoryService fileCategoryService, IMapper mapper, IUploadInfoService uploadInfoService)
 {
     this._uploadInfoService   = uploadInfoService;
     this._mapper              = mapper;
     this._fileCategoryService = fileCategoryService;
     this._fileService         = fileService;
 }
 public BusinessLogic(IFileAccessService fileAccesses,
                      IFileCategoryService fileCategories,
                      IFileService files,
                      IFileUrlService fileUrls)
 {
     Files          = files;
     FileCategories = fileCategories;
     FileAccesses   = fileAccesses;
     FileUrls       = fileUrls;
 }
Exemple #3
0
 public SelectFileViewComponent(IFileService fileService, IFileCategoryService fileCategoryService)
 {
     this._fileCategoryService = fileCategoryService;
     this._fileService         = fileService;
 }
 public EditFileCategoryViewComponent(IFileCategoryService fileCategoryService)
 {
     this._fileCategoryService = fileCategoryService;
 }
Exemple #5
0
 public SelectFileCategoryViewComponent(IFileCategoryService fileCategory)
 {
     this._fileCategory = fileCategory;
 }