public async Task <WorkItemModel> CreateAttachmentToWorkitem(int workItemid, string solname, string projectid, string orgnizationurl, string builderroreport) { WorkItemModel workItemModel = new WorkItemModel(); try { workItemModel = await workItemManager.CreateAttachmentToWorkitem(workItemid, solname, projectid, orgnizationurl, builderroreport); } catch (Exception) { } return(workItemModel); }