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