IAppGuidManager.cs 307 B

1234567891011121314
  1. namespace VberZero.DomainService.AppGuids;
  2. public interface IAppGuidManager
  3. {
  4. string GetNextRecordId(int type);
  5. Task<string> GetNextRecordIdAsync(int type);
  6. int GetRecordIdType(string no);
  7. int GetGuidFromFile(AppGuidType type);
  8. Task<int> GetGuidFromFileAsync(AppGuidType type);
  9. }