using Oqtane.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to manage s on the Oqtane installation.
///
public interface ITenantService
{
///
/// Get all s
///
///
Task> GetTenantsAsync();
///
/// Get one specific
///
/// ID-reference of the
///
Task GetTenantAsync(int tenantId);
}
}