public class Query { public Book GetBook(string isbn, [Service] IBookRepository bookRepository) { return bookRepository.GetByISBN(isbn); } }