using System.Collections.Generic; using YourNamespace.Entities; namespace YourNamespace.Repositories { public interface ITicketRepository { IEnumerable ReadTickets(); Ticket ReadTicketById(int id); void CreateTicket(Ticket ticket); void UpdateTicket(Ticket ticket); void DeleteTicket(int id); } }