using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Procedures { /// /// Represents a procedure window dialog controller. /// /// public interface IDialogWindowController : IDialogController { /// /// Hides the dialog (Use Show() to make it visible again). /// void Hide(); } }