mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
11 lines
240 B
C#
11 lines
240 B
C#
using DataAccessLayer.Entities;
|
|
|
|
namespace BusinessLayer.Services
|
|
{
|
|
public interface IUserService : IService<UserAccount>
|
|
{
|
|
UserAccount? GetByUsername(string username);
|
|
UserAccount? GetByEmail(string email);
|
|
}
|
|
}
|