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.
23 lines
568 B
23 lines
568 B
using Model;
|
|
|
|
namespace VMWrapper
|
|
{
|
|
public class ManagerViewModel
|
|
{
|
|
public FilterViewModel filterVm { get; }
|
|
public SearchBarViewModel searchBar { get; }
|
|
public BookViewModel bookVm { get; } = new BookViewModel();
|
|
|
|
public ManagerViewModel(
|
|
FilterViewModel filterVm,
|
|
SearchBarViewModel searchBar,
|
|
BookViewModel bookVm
|
|
)
|
|
{
|
|
this.filterVm = filterVm;
|
|
this.searchBar = searchBar;
|
|
this.bookVm = bookVm;
|
|
}
|
|
}
|
|
}
|