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