コード例 #1
0
ファイル: TOEService.cs プロジェクト: vietnnit/dataenergy
        public TOE Update(TOE obj)
        {
            TOEBO toeBO = new TOEBO(obj);

            toeDao.Update(toeBO);
            return(obj);
        }
コード例 #2
0
ファイル: TOEService.cs プロジェクト: vietnnit/dataenergy
        public int Insert(TOE obj)
        {
            TOEBO toeBO = new TOEBO(obj);

            return(toeDao.Insert(toeBO));
        }