public UpdateCollectionModelValidator(ICollectionsCrudService collectionsCrudService, IThemesCrudService themesCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService)
 {
     this.collectionsCrudService = collectionsCrudService;
     this.themesCrudService      = themesCrudService;
     this.userCrudService        = userCrudService;
     this.resourceCrudService    = resourceCrudService;
 }
예제 #2
0
 public UpdateItemModelValidator(IItemsCrudService itemsCrudService, ICollectionsCrudService collectionsCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService)
 {
     this.itemsCrudService       = itemsCrudService;
     this.collectionsCrudService = collectionsCrudService;
     this.userCrudService        = userCrudService;
     this.resourceCrudService    = resourceCrudService;
 }
예제 #3
0
 public Store(ICollectionsManager collectionsManager, IItemsManager itemsManager, IItemsCrudService itemsCrudService, ICollectionsCrudService collectionsCrudService, ISessionHelper sessionHelper, IMapper mapper)
 {
     this.collectionsManager     = collectionsManager;
     this.itemsManager           = itemsManager;
     this.itemsCrudService       = itemsCrudService;
     this.collectionsCrudService = collectionsCrudService;
     this.sessionHelper          = sessionHelper;
     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;
 }
예제 #5
0
 public Profile(IMapper mapper, ISessionHelper sessionHelper, IUserCrudService userCrudService, ICollectionsManager collectionsManager, ICollectionsCrudService collectionsCrudService, IItemsManager itemsManager, IItemsCrudService itemsCrudService)
 {
     this.mapper                 = mapper;
     this.userCrudService        = userCrudService;
     this.collectionsManager     = collectionsManager;
     this.collectionsCrudService = collectionsCrudService;
     this.itemsManager           = itemsManager;
     this.itemsCrudService       = itemsCrudService;
     this.sessionHelper          = sessionHelper;
 }
예제 #6
0
 public Api(IMapper mapper, ITagsCrudService tagsCrudService, IResourcesManager resourcesManager, ICollectionsCrudService collectionsCrudService, IOptionalFieldsManager optionalFieldsManager, IItemsManager itemsManager,
            ICollectionsManager collectionsManager, IItemsCrudService itemsCrudService, ILikesManager likesManager, ICommentsManager commentsManager)
 {
     this.mapper                 = mapper;
     this.resourcesManager       = resourcesManager;
     this.collectionsCrudService = collectionsCrudService;
     this.optionalFieldsManager  = optionalFieldsManager;
     this.itemsManager           = itemsManager;
     this.collectionsManager     = collectionsManager;
     this.tagsCrudService        = tagsCrudService;
     this.itemsCrudService       = itemsCrudService;
     this.likesManager           = likesManager;
     this.commentsManager        = commentsManager;
 }
예제 #7
0
 public CreateDefaultOptionalFieldModelValidator(ICollectionsCrudService collectionsCrudService, IFieldTypesCrudService fieldTypesCrudService, IUserCrudService userCrudService)
 {
     this.collectionsCrudService = collectionsCrudService;
     this.fieldTypesCrudService  = fieldTypesCrudService;
     this.userCrudService        = userCrudService;
 }
 public DeleteCollectionModelAuthenticator(IHttpContextAccessor httpContextAccessor, ICollectionsCrudService collectionsCrudService) : base(httpContextAccessor)
 {
     this.collectionsCrudService = collectionsCrudService;
 }
예제 #9
0
 public DeleteCollectionModelValidator(IUserCrudService userCrudService, ICollectionsCrudService collectionsCrudService)
 {
     this.userCrudService        = userCrudService;
     this.collectionsCrudService = collectionsCrudService;
 }
 public DeleteOptionalFieldModelValidator(IOptionalFieldsCrudService optionalFieldsCrudService, ICollectionsCrudService collectionsCrudService, IUserCrudService userCrudService)
 {
     this.collectionsCrudService    = collectionsCrudService;
     this.userCrudService           = userCrudService;
     this.optionalFieldsCrudService = optionalFieldsCrudService;
 }
예제 #11
0
 public CreateOptionalFieldModelAuthenticator(IHttpContextAccessor httpContextAccessor, ICollectionsCrudService collectionsCrudService) : base(httpContextAccessor)
 {
     this.collectionsCrudService = collectionsCrudService;
 }