public async Task <IActionResult> AddComment(int Id, string Text)
        {
            await _advertisementService.AddComment(Id, Text, User);

            return(RedirectToAction("Details", new { Id }));
        }