예제 #1
0
        public OTRequestDetailVO GetByID(int id)
        {
            OTRequestDetailVO vo = new OTRequestDetailVO();
            DataTable         dt = Select("ID=" + id + "");

            if (dt.Rows.Count > 0)
            {
                vo = b.ConvertObj(dt.Rows[0], new OTRequestDetailVO()) as OTRequestDetailVO;
            }
            return(vo);
        }
        public int Create(OTRequestDetailVO vo)
        {
            int id;

            if (!dao.isExist(vo.Id.ToString()))
            {
                id = dao.Insert(vo);
            }
            else
            {
                id = dao.Update(vo);
            }
            return(id);
        }
예제 #3
0
        public int Insert(OTRequestDetailVO vo)
        {
            int lastInsertId = 0;

            try
            {
                lastInsertId = b.Insert("OT_Request_Detail", b.ConvertColName(vo), b.ConvertValueList(vo));
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(lastInsertId);
        }
예제 #4
0
        public int Update(OTRequestDetailVO vo)
        {
            int detailID = 0;

            try
            {
                b.Update("OT_Request_Detail", vo.Id.ToString(), b.ConvertColName(vo), b.ConvertValueList(vo));
                detailID = vo.Id;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(detailID);
        }