예제 #1
0
        public ReportLog Update(ReportLog obj)
        {
            ReportLogBO reportlogBO = new ReportLogBO(obj);

            reportlogDao.Update(reportlogBO);
            return(obj);
        }
예제 #2
0
        public int Insert(ReportLog obj)
        {
            ReportLogBO reportlogBO = new ReportLogBO(obj);

            return(reportlogDao.Insert(reportlogBO));
        }