oqtane.framework/Oqtane.Server/Repository/Interfaces/IProfileRepository.cs
2020-04-03 17:18:33 -04:00

15 lines
387 B
C#

using System.Collections.Generic;
using Oqtane.Models;
namespace Oqtane.Repository.Interfaces
{
public interface IProfileRepository
{
IEnumerable<Profile> GetProfiles(int siteId);
Profile AddProfile(Profile profile);
Profile UpdateProfile(Profile profile);
Profile GetProfile(int profileId);
void DeleteProfile(int profileId);
}
}