Initial commit
This commit is contained in:
14
Oqtane.Client/Services/IPageService.cs
Normal file
14
Oqtane.Client/Services/IPageService.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IPageService
|
||||
{
|
||||
Task<List<Page>> GetPagesAsync(int SiteId);
|
||||
Task AddPageAsync(Page page);
|
||||
Task UpdatePageAsync(Page page);
|
||||
Task DeletePageAsync(int PageId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user