using System.Collections.Generic; using System.Threading.Tasks; using TicketManager.Models; namespace TicketManager.Data { public interface ITicketRepository : IGenericRepository { bool Exists(int id); } }