Initial commit
This commit is contained in:
15
Oqtane.Server/Repository/IPageRepository.cs
Normal file
15
Oqtane.Server/Repository/IPageRepository.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IPageRepository
|
||||
{
|
||||
IEnumerable<Page> GetPages();
|
||||
IEnumerable<Page> GetPages(int SiteId);
|
||||
void AddPage(Page Page);
|
||||
void UpdatePage(Page Page);
|
||||
Page GetPage(int PageId);
|
||||
void DeletePage(int PageId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user