mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
11 lines
No EOL
234 B
C#
11 lines
No EOL
234 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using TicketManager.Models;
|
|
|
|
namespace TicketManager.Data
|
|
{
|
|
public interface ITicketRepository : IGenericRepository<Ticket>
|
|
{
|
|
bool Exists(int id);
|
|
}
|
|
} |