using Demo.Data.Entity; using System.Collections.Generic; namespace Demo.Data.Repository { public interface IUserRepository { bool AddUser(UserLocalEnity newUser); List GetAllUsers(); UserLocalEnity GetUserById(Guid userID); bool RemoveUserById(Guid userID); bool UpdateUserById(Guid userID, UserLocalEnity updatedUser); } }