using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IUserService { Task> GetUsersAsync(); Task GetUserAsync(int UserId); Task AddUserAsync(User user); Task UpdateUserAsync(User user); Task DeleteUserAsync(int UserId); bool IsAuthorized(User user, string accesscontrollist); } }