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