12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OTSModelSharp.DTLBase
- {
- public interface IDBFileBase
- {
- /// Get the file name.
- string GetFileName();
- bool Open(string a_sFileName, bool a_bForce);
- bool Create(string a_sFileName, bool a_bOverwrite);
-
- void Close();
- }
- }
|