Ejemplo n.º 1
0
 public IActionResult GetRelatedAds([FromBody] AdGetWithCountryModel model)
 {
     return(Ok(_adService.GetAdGridModel(model.countryId)));
 }
Ejemplo n.º 2
0
 public IActionResult GetLatestAds([FromBody] AdGetWithCountryModel model)
 {
     return(Ok(_adService.GetAdGridModel(model.countryId).OrderByDescending(x => x.createdAt).Take(9)));
 }