mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
9 lines
163 B
C#
9 lines
163 B
C#
using Microsoft.Data.SqlClient;
|
|
|
|
namespace DataAccessLayer.Sql
|
|
{
|
|
public interface ISqlConnectionFactory
|
|
{
|
|
SqlConnection CreateConnection();
|
|
}
|
|
} |