public async Task <ActionResult> AddContent(int id, string lang)
        {
            var contentForEdit = await _postAppService.GetContentForEdit(id, lang);


            return(View(contentForEdit));
        }