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.
19 lines
414 B
19 lines
414 B
using BookApp.Data;
|
|
using BookApp.Model;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace BookApp.ViewModel
|
|
{
|
|
public class TousViewModel
|
|
{
|
|
public ObservableCollection<Book> BookCollection { get; set; } =
|
|
new ObservableCollection<Book>();
|
|
|
|
public TousViewModel()
|
|
{
|
|
Stub stub = new Stub();
|
|
BookCollection = stub.GetStubData();
|
|
}
|
|
}
|
|
}
|