using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.AzureUtils.UI.Managers { public interface IStatusManager { event EventHandler StatusUpdated; void UpdateStatus(AzureUtilsStage stage, String message, bool isIndeterminate = false); void UpdateStatus(AzureUtilsProgressEventArgs progress); void UpdateStatus(Exception ex); } }