8 lines
166 B
C#
8 lines
166 B
C#
using System.Data.Common;
|
|
|
|
namespace SweetLib.Storage.Database
|
|
{
|
|
public interface IDatabaseConnectionProvider : IConnectionProvider<DbConnection>
|
|
{
|
|
}
|
|
} |