using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IRoleService { Task> GetRolesAsync(int siteId); Task GetRoleAsync(int roleId); Task AddRoleAsync(Role role); Task UpdateRoleAsync(Role role); Task DeleteRoleAsync(int roleId); } }