RDS CAP RAP name forming changed, added pc group to RAP CAP settings

This commit is contained in:
vfedosevich 2014-11-19 03:21:26 -08:00
parent 5d2a934867
commit e49f5223d0
5 changed files with 36 additions and 44 deletions

View file

@ -39,9 +39,9 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
/// </summary>
public interface IRemoteDesktopServices
{
bool CreateCollection(string organizationId, string tenantName, RdsCollection collection);
bool CreateCollection(string organizationId, RdsCollection collection);
RdsCollection GetCollection(string collectionName);
bool RemoveCollection(string organizationId, string tenantName, string collectionName);
bool RemoveCollection(string organizationId, string collectionName);
bool SetUsersInCollection(string organizationId, string collectionName, List<string> users);
void AddSessionHostServerToCollection(string organizationId, string collectionName, RdsServer server);
void AddSessionHostServersToCollection(string organizationId, string collectionName, List<RdsServer> servers);