Files
the-biergarten-app/DataAccessLayer/Repositories/IUserAccountRepository.cs
2026-01-13 00:13:39 -05:00

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);
}
}