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
318 B

using Model;
namespace Wrapper
{
public class BookViewModel
{
Book Book { get; set; } = new Book();
ILibraryManager LibraryManager { get; set; }
public BookViewModel(ILibraryManager _libraryManager)
{
this.LibraryManager = _libraryManager;
}
}
}