/// <summary>
 /// Initializes a new instance of the <see cref="CategoriesController" /> class
 /// </summary>
 /// <param name="mapper"><see cref="IMapper"/></param>
 /// <param name="categoryService"><see cref="IAgentCategoryService"/></param>
 public CategoriesController(
     IMapper mapper,
     IAgentCategoryService categoryService)
 {
     this.mapper          = mapper;
     this.categoryService = categoryService;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AgentsController" /> class
 /// </summary>
 /// <param name="mapper"><see cref="IMapper"/></param>
 /// <param name="agentService"><see cref="IAgentService"/></param>
 /// <param name="agentRunnerService"><see cref="IAgentRunnerService"/></param>
 /// <param name="categoryService"><see cref="IAgentCategoryService"/></param>
 /// <param name="targetService"><see cref="ITargetService"/></param>
 /// <param name="rootDomainService"><see cref="IRootDomainService"/></param>
 /// <param name="subdomainService"><see cref="ISubdomainService"/></param>
 public AgentsController(
     IMapper mapper,
     IAgentService agentService,
     IAgentRunnerService agentRunnerService,
     IAgentCategoryService categoryService,
     ITargetService targetService,
     IRootDomainService rootDomainService,
     ISubdomainService subdomainService)
 {
     this.mapper             = mapper;
     this.agentService       = agentService;
     this.agentRunnerService = agentRunnerService;
     this.categoryService    = categoryService;
     this.targetService      = targetService;
     this.rootDomainService  = rootDomainService;
     this.subdomainService   = subdomainService;
 }
示例#3
0
 public AgentMarketplaceCategoryResolver(IAgentCategoryService categoryService)
 {
     this.categoryService = categoryService;
 }
 /// <summary>Initializes a new instance of the <see cref="AgentCategoryDeleteFailedConsumer" /> class.</summary>
 /// <param name="agentCategoryService">The agentCategory service.</param>
 public AgentCategoryDeleteFailedConsumer(IAgentCategoryService agentCategoryService)
 {
     _agentCategoryService = agentCategoryService;
 }
示例#5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AgentCategoriesController"/> class.
 /// </summary>
 /// <param name="agentCategoryService">The agent category service.</param>
 public AgentCategoriesController(IAgentCategoryService agentCategoryService)
 {
     _agentCategoryService = agentCategoryService;
 }