public IHttpActionResult Search([FromUri] ProductSearchCriteria criteria) { var products = _service.Search(criteria); return(Ok(products)); }