mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 10:04:00 +00:00
15 lines
300 B
C#
15 lines
300 B
C#
using Domain.Entities;
|
|
|
|
namespace Service.UserManagement.User;
|
|
|
|
public interface IUserService
|
|
{
|
|
Task<IEnumerable<UserAccount>> GetAllAsync(
|
|
int? limit = null,
|
|
int? offset = null
|
|
);
|
|
Task<UserAccount> GetByIdAsync(Guid id);
|
|
|
|
Task UpdateAsync(UserAccount userAccount);
|
|
}
|