/* using Model; using Model.Group; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyStub { public class MyStub : ILibraryManager { private readonly StubAuthor StubAuthor; public MyStub() { } public Task GetAuthorById(string id) { throw new NotImplementedException(); } public Task>> GetAuthorsByName(string substring, int index, int count, string sort = "") { throw new NotImplementedException(); } public Task GetBookById(string id) { throw new NotImplementedException(); } public Task GetBookByISBN(string isbn) { throw new NotImplementedException(); } public Task>> GetBooksByAuthor(string author, int index, int count, string sort = "") { return StubAuthor.GroupByAuthor; } public Task>> GetBooksByAuthorId(string authorId, int index, int count, string sort = "") { throw new NotImplementedException(); } public Task>> GetBooksByTitle(string title, int index, int count, string sort = "") { throw new NotImplementedException(); } } } */