InternalConnection.cs 368 B

12345678910111213141516
  1. using System.Collections.Concurrent;
  2. using System.Data;
  3. namespace appMpower.Data
  4. {
  5. public class InternalConnection : System.IDisposable
  6. {
  7. public short Number { get; set; }
  8. public IDbConnection DbConnection { get; set; }
  9. public ConcurrentDictionary<string, DbCommand> DbCommands { get; set; }
  10. public void Dispose()
  11. {
  12. }
  13. }
  14. }