/// <summary> /// Save book's list in file /// </summary> /// <param name="fileName">File's name</param> public void SaveData(IBookListStorage bookListStorage) { if (bookListStorage == null) { throw new ArgumentNullException(); } bookListStorage.StoreData(logger, bookList); }