- using System.Threading.Tasks;
- using WeApp.BaseInfo;
- namespace WeApp.CommonManager.AppGuids
- {
- public interface IAppGuidManager
- {
- string GetNextRecordId(DataLibType type);
- Task<string> GetNextRecordIdAsync(DataLibType type);
- int GetGuidFromFile(AppGuidType type);
- Task<int> GetGuidFromFileAsync(AppGuidType type);
- }
- }
|