Initial commit
This commit is contained in:
14
Oqtane.Client/Services/IPageModuleService.cs
Normal file
14
Oqtane.Client/Services/IPageModuleService.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IPageModuleService
|
||||
{
|
||||
Task<List<PageModule>> GetPageModulesAsync();
|
||||
Task AddPageModuleAsync(PageModule pagemodule);
|
||||
Task UpdatePageModuleAsync(PageModule pagemodule);
|
||||
Task DeletePageModuleAsync(int PageModuleId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user