//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System;
namespace Microsoft.SqlTools.ServiceLayer.Management
{
///
/// defines notion of sitable object
///
public interface IObjectWithSite
{
void SetSite(System.IServiceProvider sp);
}
///
/// ISqlControlCollection allows access to a collection of dialog views
///
public interface ISqlControlCollection : IObjectWithSite
{
}
}