Example #1
0
 public static async Task <List <ProjectInsight.Models.Issues.Issue> > GetByProject(Guid guid)
 {
     try
     {
         return(await client.SearchAsync(projectList : guid.ToString(), modelProperties : new ModelProperties("default,IssueStatusType")));
     }
     catch (Exception ex)
     {
         //AuthenticationService.Logout();
         return(null);
     }
 }