namespace HStation.CAL.LocalClient { /// /// /// public class XhsDbFirstHelper : IXhsDbFirstHelper { /// /// /// public async Task Initial() { return await Task.Run(() => { var bol = HStation.Service.Xhs.DbFirstHelper.Initial(out string Msg); if (!bol) { throw YOops.Oh(eResultCode.Alert, InternalErrorCodes.L001, Msg); } return bol; }); } } }