Esempio n. 1
0
 public UpdateCollectionH(
     ICollectionRepo collectionRepo,
     IMediator mediator)
 {
     _collectionRepo = collectionRepo;
     _mediator       = mediator;
 }
Esempio n. 2
0
 public CollectionLoader(ICollectionRepo collectionRepo, ICollectionRelationshipRepo collectionRelationshipRepo, IAttributeLoader attributeLoader, IImageLoader imageLoader, IItemLoader itemLoader)
 {
     _collectionRelationshipRepo = collectionRelationshipRepo;
     _collectionRepo             = collectionRepo;
     _attributeLoader            = attributeLoader;
     _imageLoader = imageLoader;
     _itemLoader  = itemLoader;
 }
Esempio n. 3
0
 public ReadCollectionsHandler(ICacheManager cacheManager,
                               ICollectionRepo collectionRepo,
                               ModelBuilder modelBuilder)
 {
     _cacheManager   = cacheManager;
     _collectionRepo = collectionRepo;
     _modelBuilder   = modelBuilder;
 }
Esempio n. 4
0
 public InsertCollectionH(
     ICollectionRepo collectionRepo,
     IMediator mediator,
     IMapper mapper)
 {
     _collectionRepo = collectionRepo;
     _mediator       = mediator;
     _mapper         = mapper;
 }
Esempio n. 5
0
 public AddCollectionHandler(IEventPublisher eventPublisher, ICollectionRepo collectionRepo)
 {
     NeedVerifyUser  = true;
     _eventPublisher = eventPublisher;
     _collectionRepo = collectionRepo;
 }
Esempio n. 6
0
 public UpdateCollectionHandler(ICollectionRepo collectionRepo)
 {
     NeedVerifyUser  = true;
     _collectionRepo = collectionRepo;
 }
Esempio n. 7
0
 public CollectionService(ICollectionRepo collectionRepo)
 {
     _collectionRepo = collectionRepo;
 }
Esempio n. 8
0
 public ReadTagsHandler(ICollectionRepo collectionRepo)
 {
     this._collectionRepo = collectionRepo;
 }
 public GetCollectionsListH(ICollectionRepo collectionRepo)
 {
     _collectionRepo = collectionRepo;
 }
Esempio n. 10
0
 public GetCollectionByIdWithDailyStatsH(
     ICollectionRepo collectionRepo)
 {
     _collectionRepo = collectionRepo;
 }
Esempio n. 11
0
 public DeleteCollectionH(
     ICollectionRepo collectionRepo)
 {
     _collectionRepo = collectionRepo;
 }
Esempio n. 12
0
 public ProductController(IUnitOfWork unitOfWork, ICollectionRepo collectionRepo, IMapper mapper)
 {
     _mapper         = mapper;
     _collectionRepo = collectionRepo;
     _unitOfWork     = unitOfWork;
 }
Esempio n. 13
0
 public ReadTagCollectionsHandler(ICollectionRepo collectionRepo)
 {
     _collectionRepo = collectionRepo;
 }
 public CartController(IUnitOfWork unitOfWork, ICollectionRepo collectionRepo, IMapper mapper, DataContext context)
 {
     _context    = context;
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }