using System; using System.Collections.Generic; using Artemis.Storage.Entities; using Artemis.Storage.Entities.Profile; namespace Artemis.Storage.Repositories.Interfaces { public interface IProfileRepository : IRepository { void Add(ProfileEntity profileEntity); void Remove(ProfileEntity profileEntity); List GetAll(); ProfileEntity Get(Guid id); List GetByPluginGuid(Guid pluginGuid); void Save(ProfileEntity profileEntity); } }