public async Task <ActionResult <Blog> > GetByTitleUrl(string titleUrl)
 {
     return(Ok(await _blogLogic.GetByTitleUrlAsync(titleUrl)));
 }