Example #1
0
        public int Insert(JDataBase pDB)
        {
            JAUTDocumentDetailTable AT = new JAUTDocumentDetailTable();

            AT.SetValueProperty(this);
            Code = AT.Insert(pDB);
            return(Code);
        }
Example #2
0
        public bool Update(JDataBase pDB)
        {
            JAUTDocumentDetailTable AT = new JAUTDocumentDetailTable();

            AT.SetValueProperty(this);
            if (AT.Update(pDB))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }