Created
September 24, 2019 10:23
-
-
Save ntakouris/2b73e04d9166ab5edeea5a7a4d96dd3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// IPostService.cs | |
Task<List<Post>> GetPostsAsync(GetAllPostsFilter filter = null, PaginationFilter paginationFilter = null); | |
// PostsController.cs | |
public async Task<IActionResult> GetAll([FromQuery] GetAllPostsQuery query, [FromQuery]PaginationQuery paginationQuery) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment