示例#1
0
 public bool Del(Guid id)
 {
     return(_countyDal.Delete(id));
 }
示例#2
0
        public bool DeleteByID(int entityID)
        {
            County deleted = GetByID(entityID);

            return(_countyDal.Delete(deleted) > 0);
        }