public async Task <List <GitlabIssue> > GetGitlabIssues(GitlabProject project)
 {
     return(await _gitlabService.GetAllIssuesOfCurrentSprint(project));
 }
 public Task <IList <Label> > GetLabelsFromCurrentProject(GitlabProject project)
 {
     return(_client.Projects.GetLabelsAsync(project.Id));
 }
 public void SetupRepositoryOnCurrentProject(GitlabProject currentProject)
 {
     _gitService.SetupRepositoryOnCurrentProject(currentProject);
 }