using System.Collections.Generic; using NzbDrone.Core.Books; namespace NzbDrone.Core.MetadataSource { public interface ISearchForNewBook { List SearchForNewBook(string title, string author, bool getAllEditions = true); List SearchByIsbn(string isbn); List SearchByAsin(string asin); List SearchByGoodreadsBookId(int goodreadsId, bool getAllEditions); } }