Initial commit
This commit is contained in:
14
Oqtane.Server/Repository/ISiteRepository.cs
Normal file
14
Oqtane.Server/Repository/ISiteRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface ISiteRepository
|
||||
{
|
||||
IEnumerable<Site> GetSites();
|
||||
void AddSite(Site site);
|
||||
void UpdateSite(Site site);
|
||||
Site GetSite(int siteId);
|
||||
void DeleteSite(int siteId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user