ITest.cs 160 B

1234567891011
  1. using System;
  2. namespace DllTestDb
  3. {
  4. public interface ITestDb
  5. {
  6. void OpenConn();
  7. void CloseConn();
  8. void OpenClose();
  9. }
  10. }