using Services.Tickets.Models; namespace Services.Tickets; public interface ITicketService { Task> GetAllTickets(); Task GetNewTicket(); }