public DataManager(IPageTitleRepository page, IProductItemRepository productItems, ISizeRepository sizes, IMainSliderContent mainSliderContent, ICategoriesOfTheMonth categoriesOfTheMonth, IDisplayedProducts displayedProducts, ICategory category) { Pages = page; ProductItems = productItems; Sizes = sizes; MainSliderContent = mainSliderContent; CategoriesOfTheMonth = categoriesOfTheMonth; DisplayedProducts = displayedProducts; Category = category; }
public RentController(IRentRepository rentRepository, IProductItemRepository productItemRepository) { _rentRepository = rentRepository; _productItemRepository = productItemRepository; }
public CreateOrderCommandHandler(IOrderRepository orderRepository, IProductItemRepository productItemRepository, IPackageService packageService) { _orderRepository = orderRepository; _productItemRepository = productItemRepository; _packageService = packageService; }
public CalculateOrderCommand(string[] parameters, ITaxationService taxationSerive, IProductItemRepository productItemRepository) { base.Parameters = parameters; _taxationService = taxationSerive; _productItemRepository = productItemRepository; }
public ProductItemController(IProductItemRepository productItemRepository) { _ProductItemRepo = productItemRepository; }
public PackageService(IProductItemRepository productItemRepository) { _productItemRepository = productItemRepository; }
public ProductItemController(IProductItemRepository productItemRepository, IProductRepository productRepository) { _productItemRepository = productItemRepository; _productRepository = productRepository; }
public ProductItemManager(IProductItemRepository productItemRepository, IGenericRepository <ProductItem> productItemGenericRepository) { this.productItemRepository = productItemRepository; this.productItemGenericRepository = productItemGenericRepository; }
public GetOrderDetailsCommandHandler(IOrderRepository orderRepository, IProductItemRepository productItemRepository, IPackageService packageService) { _orderRepository = orderRepository; _productItemRepository = productItemRepository; _packageService = packageService; }