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