public EnterpriseHistory Update(EnterpriseHistory obj)
        {
            EnterpriseHistoryBO enterpriseBO = new EnterpriseHistoryBO(obj);

            enterpriseDao.Update(enterpriseBO);
            return(obj);
        }
        public int Insert(EnterpriseHistory obj)
        {
            EnterpriseHistoryBO enterpriseBO = new EnterpriseHistoryBO(obj);

            return(enterpriseDao.Insert(enterpriseBO));
        }