public void SubmitForm(ArticleCategory roleEntity, string keyValue)
 {
     if (!string.IsNullOrEmpty(keyValue))
     {
         roleEntity.Id = keyValue;
         _Respository.Update(roleEntity);
     }
     else
     {
         //roleEntity.Category = 2;
         _Respository.Insert(roleEntity);
     }
 }