mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
15 lines
358 B
C#
15 lines
358 B
C#
using DataAccessLayer.Entities;
|
|
|
|
namespace BusinessLayer.Services
|
|
{
|
|
public interface IUserService
|
|
{
|
|
Task<IEnumerable<UserAccount>> GetAllAsync(int? limit = null, int? offset = null);
|
|
Task<UserAccount?> GetByIdAsync(Guid id);
|
|
|
|
Task AddAsync(UserAccount userAccount);
|
|
|
|
Task UpdateAsync(UserAccount userAccount);
|
|
}
|
|
}
|