public IEnumerable <IntegrationConfig> GetAll()
        {
            var configurator = new IntegrationConfigurator(Name);

            return(configurator.GetCurrent().ToList());
        }
        public IntegrationConfigCollection GetParent()
        {
            var configurator = new IntegrationConfigurator(Name);

            return(configurator.GetCurrent());
        }
        public IntegrationConfig Get()
        {
            var configurator = new IntegrationConfigurator(Name);

            return(configurator.GetCurrent().FirstOrDefault());
        }