8 lines
169 B
C#
8 lines
169 B
C#
using System.Data;
|
|
|
|
namespace ScrapperAPI.Interfaces;
|
|
|
|
public interface IDbConnectionFactory
|
|
{
|
|
Task<IDbConnection> CreateOpenConnectionAsync(CancellationToken ct);
|
|
} |