public bool ContentItemDelete(string id)
 {
     try
     {
         _contentItemDao.Delete(id);
         return(true);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }