using System.Configuration; using Neo.Afx.Common; using Neo.Afx.ComponentModel; namespace Neo.Afx.Services.Integration { public partial class SqlIntegrationStore { /// /// Initializes a new instance of the class /// using a connection string called Integration in the configuration file /// and a . /// public SqlIntegrationStore() : this(ConfigurationManager.ConnectionStrings[ConfigConnectionString].ConnectionString) { CacheContext = new CacheContext(); } } }