/// <summary> /// Loads a list of books to the file with the path <paramref name="filePath"/>. /// </summary> /// <param name="filePath">A file path.</param> public void LoadBooksListFromFile(string filePath) { Books.Clear(); Books = _bookListStorage.GetListOfBooks(filePath); }