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