cicd-github-actions/src/GitHubActionsDemo.Service/ILibraryService.cs
2023-06-30 14:00:30 +01:00

11 lines
No EOL
317 B
C#

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