public Enterprise Update(Enterprise obj)
        {
            EnterpriseBO enterpriseBO = new EnterpriseBO(obj);

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

            return(enterpriseDao.Insert(enterpriseBO));
        }