public async Task <ActionResult <Ad> > GetAdById(long adId) { var ad = await _adService.GetAdByID(adId); return(Ok(ad)); }