public ServiceService(IValidationDictionary validationDictionary, IServiceRepository repository,
     ISystemServicesService systemService)
 {
     _validationDictionary = validationDictionary;
     _userHelper = new UserHelper();
     _repository = repository;
     _systemService = systemService;
 }
 public WolfService(IAgentService agentService,
                    AgentConfiguration agentConfiguration,
                    IHelper helper,
                    IMonitoring monitoring,
                    ISystemServicesService systemServicesService)
 {
     _systemServicesService = systemServicesService;
     _agentService          = agentService;
     _agentConfiguration    = agentConfiguration;
     _helper     = helper;
     _monitoring = monitoring;
 }