public UsedLeaveVO GetByID(int id) { UsedLeaveVO vo = new UsedLeaveVO(); DataTable dt = Select("ID=" + id + ""); if (dt.Rows.Count > 0) { vo = b.ConvertObj(dt.Rows[0], new UsedLeaveVO()) as UsedLeaveVO; } return(vo); }
public int Insert(UsedLeaveVO vo) { int lastInsertId = 0; try { lastInsertId = b.Insert("Used_Leave", b.ConvertColName(vo), b.ConvertValueList(vo)); } catch (SqlException ex) { throw ex; } return(lastInsertId); }
public int Create(UsedLeaveVO vo) { int id; if (!dao.isExist(vo.Id.ToString())) { id = dao.Insert(vo); } else { id = dao.Update(vo); } return(id); }
public int Update(UsedLeaveVO vo) { int ID = 0; try { b.Update("Used_Leave", vo.Id.ToString(), b.ConvertColName(vo), b.ConvertValueList(vo)); ID = vo.Id; } catch (SqlException ex) { throw ex; } return(ID); }