using RMWPFInterfaceLibrary.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace RMWPFInterfaceLibrary.Api { public interface IUserEndPoint { Task> GetAll(); Task> GetAllRoles(); Task AddUserToRole(string userId, string roleName); Task RemoveUserFromRole(string userId, string roleName); } }