- namespace VberZero.DomainService.AppGuids;
- public interface IAppGuidManager
- {
- string GetNextRecordId(int type);
- Task<string> GetNextRecordIdAsync(int type);
- int GetRecordIdType(string no);
- int GetGuidFromFile(AppGuidType type);
- Task<int> GetGuidFromFileAsync(AppGuidType type);
- }
|