Added new sharepoint service item

This commit is contained in:
vfedosevich 2015-03-19 04:16:55 -07:00
parent 2e1f2dfaa4
commit 8a868a4ea8
42 changed files with 1354 additions and 93 deletions

View file

@ -355,5 +355,17 @@ namespace WebsitePanel.EnterpriseServer
{
return RemoteDesktopServicesController.GetRdsServices();
}
[WebMethod]
public string GetRdsSetupLetter(int itemId, int? accountId)
{
return RemoteDesktopServicesController.GetRdsSetupLetter(itemId, accountId);
}
[WebMethod]
public int SendRdsSetupLetter(int itemId, int? accountId, string to, string cc)
{
return RemoteDesktopServicesController.SendRdsSetupLetter(itemId, accountId, to, cc);
}
}
}