IDbConnectionFactory.cs 152 B

123456789
  1. using System.Data;
  2. namespace Ant.Infrastructure
  3. {
  4. public interface IDbConnectionFactory
  5. {
  6. IDbConnection CreateConnection();
  7. }
  8. }