using Demo.Domain.Models; namespace Demo.Data.Repository { public interface IUserRepository { List GetAllUser(); UserLocalEntity? GetUserByGuid(Guid guid); bool RemoveUserByGuid(Guid guid); UserLocalEntity? UpdateUser(UserLocalEntity updatedUser); } }