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

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

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

            try
            {
                lastInsertId = b.Insert("Fine_Type", b.ConvertColName(vo), b.ConvertValueList(vo));
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(lastInsertId);
        }
        public int Update(FineTypeVO vo)
        {
            int fineTypeID = 0;

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