9 lines
145 B
C#
9 lines
145 B
C#
using System.Data;
|
|
|
|
namespace ServerLib.RDB.Database;
|
|
|
|
public interface IDbConnectionFactory
|
|
{
|
|
public IDbConnection CreateConnection();
|
|
}
|