/// <summary>
 /// Initializes a new instance of the <see cref="ITBlogChannelView"/> class.
 /// </summary>
 /// <param name="viewModel">The view model.</param>
 public ITBlogChannelView(ITBlogChannelViewModel viewModel)
     : this()
 {
     Guard.ArgumentNotNull(viewModel, "viewModel");
     this.DataContext = viewModel;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ITBlogChannelView"/> class.
 /// </summary>
 /// <param name="viewModel">The view model.</param>
 public ITBlogChannelView(ITBlogChannelViewModel viewModel)
     : this()
 {
     Guard.ArgumentNotNull(viewModel, "viewModel");
     this.DataContext = viewModel;
 }