using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IProfileService { Task> GetProfilesAsync(int siteId); Task GetProfileAsync(int profileId); Task AddProfileAsync(Profile profile); Task UpdateProfileAsync(Profile profile); Task DeleteProfileAsync(int profileId); } }