Erste lauffähige Version
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using TodoTicketApp.Models;
|
||||
|
||||
namespace TodoTicketApp.Services;
|
||||
|
||||
public interface ITicketService
|
||||
{
|
||||
void AddTicket(Ticket ticket);
|
||||
IEnumerable<Ticket> GetPendingTickets();
|
||||
Ticket? GetNextTicket();
|
||||
void CompleteTicket(Guid id);
|
||||
void AddComment(Guid ticketId, TicketComment comment);
|
||||
|
||||
Ticket? GetTicketById(Guid id);
|
||||
void UpdateTicket(Ticket ticket);
|
||||
}
|
||||
Reference in New Issue
Block a user