/// <summary>
        /// 修改
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        public bool Update(WeixinBaseConfigure entity)
        {
            HibernateTemplate.Update(entity);
            return(true);

            throw new NotImplementedException();
        }
        /// <summary>
        /// 添加
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        public bool Insert(WeixinBaseConfigure entity)
        {
            if (HibernateTemplate.Save(entity) != null)
            {
                return(true);
            }
            return(false);

            throw new NotImplementedException();
        }
Example #3
0
 public bool Update(WeixinBaseConfigure entity)
 {
     FactoryDao.WeixinConfigureDao.Update(entity);
     throw new NotImplementedException();
 }
Example #4
0
        public bool Insert(WeixinBaseConfigure entity)
        {
            return(FactoryDao.WeixinConfigureDao.Insert(entity));

            throw new NotImplementedException();
        }