using Domain.Entities; namespace Service.UserManagement.User; public interface IUserService { Task> GetAllAsync( int? limit = null, int? offset = null ); Task GetByIdAsync(Guid id); Task UpdateAsync(UserAccount userAccount); }