public CommentsManager(IModelValidatorsStore validatorsStore, IItemCommentCrudService itemCommentCrudService, ICommentsCrudService commentsCrudService, IMapper mapper)
 {
     this.validatorsStore        = validatorsStore;
     this.itemCommentCrudService = itemCommentCrudService;
     this.commentsCrudService    = commentsCrudService;
     this.mapper = mapper;
 }
Example #2
0
 public OptionalFieldsManager(IOptionalFieldsCrudService optionalFieldsCrudService, IModelValidatorsStore validatorsStore, IModelAuthenticatorsStore authenticatorsStore, IMapper mapper)
 {
     this.optionalFieldsCrudService = optionalFieldsCrudService;
     this.validatorsStore           = validatorsStore;
     this.authenticatorsStore       = authenticatorsStore;
     this.mapper = mapper;
 }
 public CollectionsManager(ICollectionsCrudService collectionsCrudService, IModelValidatorsStore validatorsStore, IModelAuthenticatorsStore authenticatorsStore, ICollectionItemCrudService collectionItemCrudService, IResourcesManager resourcesManager, IMapper mapper)
 {
     this.mapper = mapper;
     this.collectionsCrudService    = collectionsCrudService;
     this.validatorsStore           = validatorsStore;
     this.authenticatorsStore       = authenticatorsStore;
     this.resourcesManager          = resourcesManager;
     this.collectionItemCrudService = collectionItemCrudService;
 }
Example #4
0
 public ItemsManager(IItemsCrudService itemsCrudService, ICollectionsManager collectionsManager, IModelValidatorsStore validatorsStore,
                     IModelAuthenticatorsStore authenticatorsStore, IResourcesManager resourcesManager, ITagsManager tagsManager, ICPUnitOfWork cPUnitOfWork, IMapper mapper)
 {
     this.mapper              = mapper;
     this.cPUnitOfWork        = cPUnitOfWork;
     this.itemsCrudService    = itemsCrudService;
     this.collectionsManager  = collectionsManager;
     this.validatorsStore     = validatorsStore;
     this.authenticatorsStore = authenticatorsStore;
     this.resourcesManager    = resourcesManager;
     this.tagsManager         = tagsManager;
 }
Example #5
0
 public LikesManager(IItemLikeCrudService itemLikeCrudService, IModelValidatorsStore modelValidatorsStore, IMapper mapper)
 {
     this.itemLikeCrudService  = itemLikeCrudService;
     this.modelValidatorsStore = modelValidatorsStore;
     this.mapper = mapper;
 }