0

我正在为我的 .net 项目使用 Xero sdk(使用 Xero.NetStandard.OAuth2.Api;使用 Xero.NetStandard.OAuth2.Model.PayrollAu;)

    public XeroAuth _xeroAuth;
    public PayrollAuApi ipayrollAUApi = new PayrollAuApi(); //*************
    private Xero.NetStandard.OAuth2.Model.PayrollAu.Employee _GetEmpLeave;
   
    // get perticular Employee all data
    private async Task<Xero.NetStandard.OAuth2.Model.PayrollAu.Employee> GetEmployeeAsync(Guid 
     syncedEmpID)
    {
        var tokens = await _xeroAuth.GetXeroTokenAuthorization();
        _tenantUniqueId = tokens.Item3;
        try
        {
            return ipayrollAUApi.GetEmployeeAsync(tokens.Item1, tokens.Item2, 
             syncedEmpID).Result._Employees;
        }
        catch (Exception ex)
        {

            logging.LoggingToText(ex, await _Context.GetAssemblyInfoAsync(4));
            return null;
        }
    }

在这个显示转换错误的GetEmployeeAsync方法中,它看起来像这样 在此处输入图像描述

如何解决这个问题

4

0 回答 0