public ActionResult Delete(int id)
        {
            var idxoa = _tagTinTucRepository.GetById(id);

            _tagTinTucRepository.Delete(idxoa);
            _unitOfWork.Commit();
            return(RedirectToAction("Index"));
        }