internal InfoBarActionViewModel(InfoBarViewModel owner, IInfoBarTextSpan textSpan) : base(owner, textSpan) { ClickActionItemCommand = new DelegateCommand(OnClickActionItemCommandExecuted); }
internal InfoBarTextViewModel(InfoBarViewModel owner, IInfoBarTextSpan textSpan) { Validate.IsNotNull(textSpan, nameof(textSpan)); TextSpan = textSpan; Owner = owner; }