private TreeViewModel(Catalog catalog) { Mapper.Map(catalog, this); Children = new ObservableCollection<TreeViewModel>(); }
private void SetBooksByCatalog(Catalog catalog) { SetBooksByCatalogId(catalog.Id); }