using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner.Services
{
///
/// This interface defines a UI controller which can be used to display dialogs
/// in either modal form from a ViewModel.
///
public interface IUIVisualizerService
{
///
/// This method displays a modal dialog associated with the given key.
///
/// Object state to associate with the dialog
/// True/False if UI is displayed.
bool? ShowDialog(object dataContextForPopup);
}
}