mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
12 lines
No EOL
257 B
C#
12 lines
No EOL
257 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using TicketManager.Models;
|
|
|
|
namespace TicketManager.Data
|
|
{
|
|
public interface IAppUserRepository : IGenericRepository<AppUser>
|
|
{
|
|
Task<AppUser> GetUser(Guid id);
|
|
bool Exists(Guid id);
|
|
}
|
|
} |