public bool Delete(int id)
 {
     if (string.IsNullOrWhiteSpace(id.ToString()))
     {
         return(status);
     }
     else
     {
         return(iConditionRepository.Delete(id));
     }
 }
 public void Delete(int id)
 {
     db.Delete(id);
 }
 public void Delete(long key)
 {
     _IRepository.Delete(key);
 }