コード例 #1
0
 public RustTestStatsData(
     IShopService shopService,
     UserManager <AppUser> userManager,
     IRustShopService rustShopService,
     EasyShopContext easyShopContext,
     IRustDefaultCategoriesWithItemsService rustDefaultCategoriesWithItemsService,
     IMultiTenancyStoreService tenancyStoreService)
 {
     _shopService     = shopService;
     _userManager     = userManager;
     _rustShopService = rustShopService;
     _easyShopContext = easyShopContext;
     _rustDefaultCategoriesWithItemsService = rustDefaultCategoriesWithItemsService;
     _tenancyStoreService = tenancyStoreService;
 }
コード例 #2
0
 public RustShopService(
     IConfiguration configuration,
     UserManager <AppUser> userManager,
     EasyShopContext easyShopContext,
     ILogger <RustShopService> logger,
     IHttpContextAccessor httpContextAccessor,
     IRustDefaultCategoriesWithItemsService rustDefaultCategoriesWithItemsService,
     IMultiTenancyStoreService tenancyStoreService
     )
 {
     _configuration       = configuration;
     _userManager         = userManager;
     _easyShopContext     = easyShopContext;
     _logger              = logger;
     _httpContextAccessor = httpContextAccessor;
     _rustDefaultCategoriesWithItemsService = rustDefaultCategoriesWithItemsService;
     _tenancyStoreService = tenancyStoreService;
 }