public OtherFuelConsume Update(OtherFuelConsume obj)
        {
            OtherFuelConsumeBO otherfuelconsumeBO = new OtherFuelConsumeBO(obj);

            otherfuelconsumeDao.Update(otherfuelconsumeBO);
            return(obj);
        }
        public int Insert(OtherFuelConsume obj)
        {
            OtherFuelConsumeBO otherfuelconsumeBO = new OtherFuelConsumeBO(obj);

            return(otherfuelconsumeDao.Insert(otherfuelconsumeBO));
        }