コード例 #1
0
        public IEnumerable <IntegrationConfig> GetAll()
        {
            var configurator = new IntegrationConfigurator(Name);

            return(configurator.GetCurrent().ToList());
        }
コード例 #2
0
        public IntegrationConfigCollection GetParent()
        {
            var configurator = new IntegrationConfigurator(Name);

            return(configurator.GetCurrent());
        }
コード例 #3
0
        public IntegrationConfig Get()
        {
            var configurator = new IntegrationConfigurator(Name);

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