mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
13 lines
294 B
C#
13 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using DataAccessLayer.Entities;
|
|
|
|
namespace DataAccessLayer
|
|
{
|
|
public interface IUserAccountRepository : IRepository<UserAccount>
|
|
{
|
|
UserAccount? GetByUsername(string username);
|
|
UserAccount? GetByEmail(string email);
|
|
}
|
|
}
|