a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
694 B
C#
25 lines
694 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
namespace WebMatrix.Data.Test.Mocks
|
|
{
|
|
public class MockConnectionConfiguration : IConnectionConfiguration
|
|
{
|
|
public MockConnectionConfiguration(string connectionString)
|
|
{
|
|
ConnectionString = connectionString;
|
|
}
|
|
|
|
public string ConnectionString { get; private set; }
|
|
|
|
string IConnectionConfiguration.ConnectionString
|
|
{
|
|
get { return ConnectionString; }
|
|
}
|
|
|
|
IDbProviderFactory IConnectionConfiguration.ProviderFactory
|
|
{
|
|
get { return null; }
|
|
}
|
|
}
|
|
}
|