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