init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
24
Kreta.Client/Jira/Interface/IJiraClient.cs
Normal file
24
Kreta.Client/Jira/Interface/IJiraClient.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Client.Jira.Model.Request;
|
||||
using Kreta.Client.Jira.Model.Response;
|
||||
|
||||
namespace Kreta.Client.Jira.Interface
|
||||
{
|
||||
public interface IJiraClient
|
||||
{
|
||||
bool IsFileUploadEnabled { get; set; }
|
||||
|
||||
void CreateBasicAuthenticator(string username, string password);
|
||||
string GetServiceDeskId();
|
||||
GetRequestModel GetBejelentes(string id);
|
||||
GetRequestTypeModel GetRequestTypes(string serviceDeskId);
|
||||
GetRequestModel CreateBejelentes(TicketRequest ticketRequest);
|
||||
TemporaryAttachmentsModel UploadAttachments(List<File> fileList, string serviceDeskId);
|
||||
void AddAttachmentsToIssue(AddAttachments addAttachmentsModel, string isssueId);
|
||||
string CreateCommentToBejelentes(string id, CommentRequest commentRequest);
|
||||
GetRequestsModel GetBejelentesek(string requestType, string serviceDeskId, string requestStatus, string first, string limit);
|
||||
GetRequestsComentsModel GetBejelentesCommentek(string id);
|
||||
void ChangeAdminEmail(string intemzenyAzonosito, string newAddress);
|
||||
void SubscribeToBejegyzes(string id);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue