IDatabaseFactory.cs 156 B

123456789
  1. using System.Data;
  2. namespace Aip.Service.Infrastructures
  3. {
  4. public interface IDatabaseFactory
  5. {
  6. IDbConnection GetDbConnection();
  7. }
  8. }