public BookerStudioMessageBox(string title, string dialogMsg, GuestBookerMessageBoxButtons dialogType)
     : this(title, dialogMsg)
 {
     DialogType = dialogType;
 }
 /// <summary>
 /// Message Box with name, title and icon
 /// </summary>
 /// <param name="title"></param>
 /// <param name="dialogMsg"></param>
 /// <param name="iconType"></param>
 public BookerStudioMessageBox(string title, string dialogMsg, GuestBookerMessageBoxButtons dialogType, IconType iconType)
     : this(title, dialogMsg, dialogType)
 {
     BookerStudioMessageBoximage.Source = new BitmapImage(new Uri(iconType.ToString(), UriKind.Relative));
 }