Пример #1
0
 public UpdateService(FastContext context, IItemsService itemsService, IContainerService containerService,
                      ICategoryService categoryService,
                      ICurrencyService currencyService, ISelectionContainerService selectionContainerService)
 {
     _context                   = context;
     _itemsService              = itemsService;
     _containerService          = containerService;
     _categoryService           = categoryService;
     _currencyService           = currencyService;
     _selectionContainerService = selectionContainerService;
 }
Пример #2
0
 public ItemsService(FastContext context, IMapper mapper, ITpItemService tpItemService,
                     Gw2ApiClient gw2ApiClient, ISelectionContainerService selectionContainerService,
                     ICategoryService categoryService, ICurrencyService currencyService, IContainerService containerService)
 {
     _context                   = context;
     _mapper                    = mapper;
     _tpItemService             = tpItemService;
     _gw2ApiClient              = gw2ApiClient;
     _selectionContainerService = selectionContainerService;
     _categoryService           = categoryService;
     _currencyService           = currencyService;
     _containerService          = containerService;
 }