public LeaveAllowVO GetByID(int id)
        {
            LeaveAllowVO vo = new LeaveAllowVO();
            DataTable    dt = Select("ID=" + id + "");

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

            if (!dao.isExist(vo.Id.ToString()))
            {
                id = dao.Insert(vo);
            }
            else
            {
                id = dao.Update(vo);
            }
            return(id);
        }
        public int Insert(LeaveAllowVO vo)
        {
            int lastInsertId = 0;

            try
            {
                lastInsertId = b.Insert("Leave_Allow", b.ConvertColName(vo), b.ConvertValueList(vo));
            }
            catch (SqlException ex)
            {
                throw ex;
            }
            return(lastInsertId);
        }
        public int Update(LeaveAllowVO vo)
        {
            int ID = 0;

            try
            {
                b.Update("Leave_Allow", vo.Id.ToString(), b.ConvertColName(vo), b.ConvertValueList(vo));
                ID = vo.Id;
            }
            catch (SqlException ex)
            {
                throw ex;
            }
            return(ID);
        }