public async Task <IActionResult> Delete([FromRoute] int id)
        {
            bool result = await _service.DeleteAnnoucementById(id);

            if (!result)
            {
                throw Exception($"Could not delete annoucement with id {id}");
            }
            return(Ok());
        }