public ChannelCreateViewModel(INotificationManager manager, IDialogs dialogs)
 {
     this.Create = ReactiveCommand.CreateFromTask
                   (
         () => manager.CreateChannel(this.ToChannel()),
         this.WhenAny(
             x => x.Identifier,
             x => !x.GetValue().IsEmpty()
             )
                   );
 }