9 lines
No EOL
148 B
C#
9 lines
No EOL
148 B
C#
using System.Data;
|
|
|
|
namespace GitHubActionsDemo.Persistance;
|
|
|
|
public interface IDbContext
|
|
{
|
|
IDbConnection CreateConnection();
|
|
Task Init();
|
|
} |