public ReportLog Update(ReportLog obj) { ReportLogBO reportlogBO = new ReportLogBO(obj); reportlogDao.Update(reportlogBO); return(obj); }
public int Insert(ReportLog obj) { ReportLogBO reportlogBO = new ReportLogBO(obj); return(reportlogDao.Insert(reportlogBO)); }