コード例 #1
0
 public ManageFileServersController(IFileServersService fileServersService,
                                    ILocalizationService localizationService,
                                    IFileServerModelFactory fileServerModelFactory)
 {
     _fileServersService     = fileServersService;
     _localizationService    = localizationService;
     _fileServerModelFactory = fileServerModelFactory;
 }
コード例 #2
0
 public DownloadController(
     IProductService productService,
     IFileServersService fileServersService,
     ILocalizationService localizationService,
     IProductCheckoutAttributesService productCheckoutAttributesService,
     IProductDiscountsForUserGroupsService productDiscountsForUserGroupsService,
     IProductDownloadsLogService downloadsLogService)
 {
     _productService      = productService;
     _fileServersService  = fileServersService;
     _localizationService = localizationService;
     _productCheckoutAttributesService     = productCheckoutAttributesService;
     _productDiscountsForUserGroupsService = productDiscountsForUserGroupsService;
     _downloadsLogService = downloadsLogService;
 }