Web Console integration

This commit is contained in:
sergey 2013-05-28 15:50:32 +03:00
parent d933862a05
commit 440af2bf77
25 changed files with 2260 additions and 409 deletions

View file

@ -97,5 +97,17 @@ namespace WebsitePanel.EnterpriseServer
{
HeliconZooController.SetEnabledEnginesForSite(siteId, packageId, engines);
}
[WebMethod]
public bool IsWebCosoleEnabled(int serviceId)
{
return HeliconZooController.IsWebCosoleEnabled(serviceId);
}
[WebMethod]
public void SetWebCosoleEnabled(int serviceId, bool enabled)
{
HeliconZooController.SetWebCosoleEnabled(serviceId, enabled);
}
}
}