12 lines
234 B
C#
12 lines
234 B
C#
using TicketAppIncrArchi.Domain.Entities;
|
|
|
|
namespace TicketAppIncrArchi.Application.Interfaces;
|
|
|
|
public interface ITicketService
|
|
{
|
|
IEnumerable<Ticket> GetAll();
|
|
|
|
Ticket? GetById(Guid id);
|
|
Ticket Create(Ticket ticket);
|
|
}
|