using GitHubActionsDemo.Service.Models; namespace GitHubActionsDemo.Service; public interface ILibraryService { Task> GetBooksAsync(int page, int pageSize); Task GetBookAsync(int bookId); Task AddBookAsync(NewBook book); Task AddAuthorAsync(NewAuthor author); }