using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IModuleService { Task> GetModulesAsync(int PageId); Task> GetModulesAsync(int SiteId, string ModuleDefinitionName); Task GetModuleAsync(int ModuleId); Task AddModuleAsync(Module Module); Task UpdateModuleAsync(Module Module); Task DeleteModuleAsync(int ModuleId); } }