IAppGuidManager.cs 363 B

12345678910111213
  1. using System.Threading.Tasks;
  2. using WeApp.BaseInfo;
  3. namespace WeApp.CommonManager.AppGuids
  4. {
  5. public interface IAppGuidManager
  6. {
  7. string GetNextRecordId(DataLibType type);
  8. Task<string> GetNextRecordIdAsync(DataLibType type);
  9. int GetGuidFromFile(AppGuidType type);
  10. Task<int> GetGuidFromFileAsync(AppGuidType type);
  11. }
  12. }