blob: 80d1b22e6acd4665334f5243b61e01e20aa37540 (
plain)
1
2
3
4
5
6
7
8
9
|
using System.Data;
namespace CrupestApi.Commons.Crud;
// TODO: Implement and register this service.
public interface IDbConnectionFactory
{
IDbConnection Get(string? name = null);
}
|