Exemplo n.º 1
0
 public IActionResult FindMovieByNamePagedSearch([FromQuery] string name, int pageSize, int page, int order = (int)MovieField.title, bool isAscending = true)
 {
     return(new OkObjectResult(_business.FindMovieByNamePagedSearch(name, pageSize, page, (MovieField)order, isAscending)));
 }