using Model; namespace VMWrapper { public class ManagerViewModel { public FilterViewModel filterVm { get; } public SearchBarViewModel searchBar { get; } public BookViewModel bookVm { get; } public ManagerViewModel(FilterViewModel filterVm, SearchBarViewModel searchBar, BookViewModel bookVm) { this.filterVm = filterVm; this.searchBar = searchBar; this.bookVm = bookVm; } } }