using DataAccessLayer.Entities; namespace BusinessLayer.Services { public interface IUserService { Task> GetAllAsync(int? limit = null, int? offset = null); Task GetByIdAsync(Guid id); Task AddAsync(UserAccount userAccount); Task UpdateAsync(UserAccount userAccount); } }