15 lines
506 B
C#
15 lines
506 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 abstract class MockDbFileHandler : IDbFileHandler
|
|||
|
{
|
|||
|
IConnectionConfiguration IDbFileHandler.GetConnectionConfiguration(string fileName)
|
|||
|
{
|
|||
|
return GetConnectionConfiguration(fileName);
|
|||
|
}
|
|||
|
|
|||
|
public abstract MockConnectionConfiguration GetConnectionConfiguration(string fileName);
|
|||
|
}
|
|||
|
}
|