Files
the-biergarten-app/DataAccessLayer/Repositories/IUserAccountRepository.cs
2026-01-11 23:36:26 -05:00

14 lines
337 B
C#

using System;
using System.Collections.Generic;
using DataAccessLayer.Entities;
namespace DataAccessLayer
{
public interface IUserAccountRepository : IRepository<UserAccount>
{
IEnumerable<UserAccount> GetAll();
UserAccount? GetByUsername(string username);
UserAccount? GetByEmail(string email);
}
}