using Models; namespace Logic { public interface IUserRepository { public List GetAllUsers(); public User GetUserById(int id); public User GetUserByName(string userName); public List GetUsersByPage(int p, int c); public User CreateUser(string name, string password, UserRole role); public void UpdateUser(int id, string name, string password, UserRole role); public void DisableUser(int id); } }