Example #1
0
 public UpdateItemModelValidator(IItemsCrudService itemsCrudService, ICollectionsCrudService collectionsCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService)
 {
     this.itemsCrudService       = itemsCrudService;
     this.collectionsCrudService = collectionsCrudService;
     this.userCrudService        = userCrudService;
     this.resourceCrudService    = resourceCrudService;
 }
 public UpdateCollectionModelValidator(ICollectionsCrudService collectionsCrudService, IThemesCrudService themesCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService)
 {
     this.collectionsCrudService = collectionsCrudService;
     this.themesCrudService      = themesCrudService;
     this.userCrudService        = userCrudService;
     this.resourceCrudService    = resourceCrudService;
 }
Example #3
0
 public JiraConsumer(IResourceCrudService resourceService, IResourcePublisher publisher, IOptions <ConfigSettings> configSettings)
 {
     _resourcePublisher = publisher;
     _resourceService   = resourceService;
     _configSettings    = configSettings.Value;
 }
 public ResourcesManager(IResourceCrudService resourceCrudService, ICloudinaryService cloudinaryService, IMapper mapper)
 {
     this.resourceCrudService = resourceCrudService;
     this.cloudinaryService   = cloudinaryService;
     this.mapper = mapper;
 }
Example #5
0
 public JiraPublisher(IResourceCrudService jiraService, IDatabaseService databaseService, IOptions <ConfigSettings> configSettingOptions)
 {
     _dbService   = databaseService;
     _jiraService = jiraService;
     _config      = configSettingOptions.Value;
 }
 public EasyAccessConsumer(IResourceCrudService resourceService, IResourcePublisher publisher)
 {
     _resourcePublisher = publisher;
     _resourceService   = resourceService;
 }
Example #7
0
 public EasyAccessPublisher(IResourceCrudService easyAccessService, IOptions <EasyAccessConfig> configOptions)
 {
     _easyAccessService = easyAccessService;
     _config            = configOptions.Value;
 }