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