using w21library.classes; namespace w21libraryconsole { internal class Program { static void Main(string[] args) { TestLibrary testLibrary = new TestLibrary(); string uid = String.Empty; foreach (var book in testLibrary.GetActiveBooks()) { uid = book.Uuid; Console.WriteLine($"[{book.Author} // {book.Name}"); } testLibrary.AddBook("asdas", "asasdfasdasd"); testLibrary.RemoveBook(uid); } } }