Exemplo n.º 1
0
		public PublishProductEntity Update (PublishProductEntity entity)
		{
			try
            {
                _publishproductRepository.Update(entity);
                return entity;
            }
            catch (Exception e)
            {
				_log.Error(e,"数据库操作出错");
                return null;
            }
		}
Exemplo n.º 2
0
		public bool Delete(PublishProductEntity entity)
		{
			try
            {
                _publishproductRepository.Delete(entity);
                return true;
            }
            catch (Exception e)
            {
				_log.Error(e,"数据库操作出错");
                return false;
            }
		}