public async Task <IActionResult> GetById([FromRoute] int id)
        {
            AnnoucementForViewDto annoucementDto = await _service.GetAnnoucementById(id);

            if (annoucementDto == null)
            {
                return(NotFound($"No annoucement with id: {id}"));
            }
            return(Ok(annoucementDto));
        }