IDBFileBase.cs 391 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OTSModelSharp.DTLBase
  7. {
  8. public interface IDBFileBase
  9. {
  10. /// Get the file name.
  11. string GetFileName();
  12. bool Open(string a_sFileName, bool a_bForce);
  13. bool Create(string a_sFileName, bool a_bOverwrite);
  14. void Close();
  15. }
  16. }