Esempio n. 1
0
        public string RecordSelect(int flag)
        {
            DllJobType objDal = new DllJobType();

            try
            {
                return(objDal.SelectJobType(flag));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }
Esempio n. 2
0
        public string RecordInsert(string n)
        {
            DllJobType objDal = new DllJobType();

            try
            {
                return(objDal.InsertJobType(n));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }
Esempio n. 3
0
        public int RecordDelete(PropJobType objProperty)
        {
            DllJobType objDal = new DllJobType();

            try
            {
                return(objDal.DeleteJobType(objProperty));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }