コード例 #1
0
ファイル: BusEventPlace.cs プロジェクト: CoolWirya/BS
        public bool Delete()
        {
            BusEventPalceTable AT = new BusEventPalceTable();

            AT.SetValueProperty(this);
            return(AT.Delete());
        }
コード例 #2
0
ファイル: BusEventPlace.cs プロジェクト: CoolWirya/BS
        public int Insert(JDataBase db = null)
        {
            BusEventPalceTable AT = new BusEventPalceTable();

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

            return(Code);
        }