mirror of
https://github.com/EpicMorg/jira-issue-web-reporter.git
synced 2025-04-12 12:30:01 +03:00
19 lines
759 B
C#
19 lines
759 B
C#
namespace epicmorg.jira.issue.web.reporter.Services.Interfaces
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using epicmorg.jira.issue.web.reporter.Models;
|
|
using epicmorg.jira.issue.web.reporter.Models.Check.Response;
|
|
using epicmorg.jira.issue.web.reporter.Models.Create.Request;
|
|
using epicmorg.jira.issue.web.reporter.Models.Create.Response;
|
|
|
|
public interface IJiraService
|
|
{
|
|
Task<CheckResponse> GetIssueStatus(string issue, CancellationToken cancellationToken);
|
|
|
|
Task<IReadOnlyList<ProjectDto>> GetProjects(CancellationToken cancellationToken);
|
|
|
|
Task<CreateResponse> CreateIssue(CreateJiraRequest request, CancellationToken cancellationToken);
|
|
}
|
|
} |