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.
13 lines
310 B
13 lines
310 B
namespace w21library.classes
|
|
{
|
|
public class TestLibrary : Library
|
|
{
|
|
public TestLibrary()
|
|
{
|
|
BookList.Add(new Book("author 1", "name 1"));
|
|
BookList.Add(new Book("author 1", "name 2"));
|
|
BookList.Add(new Book("author 2", "name 3"));
|
|
}
|
|
}
|
|
|
|
}
|