예제 #1
0
파일: SellerOwner.cs 프로젝트: CoolWirya/BS
        public bool Delete()
        {
            JSellerTicketOwnerTable AT = new JSellerTicketOwnerTable();

            AT.SetValueProperty(this);
            return(AT.Delete());
        }
예제 #2
0
파일: SellerOwner.cs 프로젝트: CoolWirya/BS
        public int Insert(JDataBase db = null)
        {
            JSellerTicketOwnerTable AT = new JSellerTicketOwnerTable();

            AT.SetValueProperty(this);
            if (db == null)
            {
                Code = AT.Insert();
            }
            else
            {
                Code = AT.Insert(db);
            }
            return(Code);
        }