Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created September 24, 2019 10:23
Show Gist options
  • Save ntakouris/2b73e04d9166ab5edeea5a7a4d96dd3f to your computer and use it in GitHub Desktop.
Save ntakouris/2b73e04d9166ab5edeea5a7a4d96dd3f to your computer and use it in GitHub Desktop.
// 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