You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
444 B
18 lines
444 B
using Model;
|
|
using System.Collections.ObjectModel;
|
|
using VMWrapper;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace BookApp.ViewModel;
|
|
|
|
public class ViewModelManager
|
|
{
|
|
BookViewModel _viewModel;
|
|
public ObservableCollection<Author> Authors { get; set; } = new ObservableCollection<Author>();
|
|
|
|
public ViewModelManager(BookViewModel viewModel)
|
|
{
|
|
_viewModel = viewModel;
|
|
}
|
|
}
|