コード例 #1
0
        public void Insert(int KgmRecID, string KgmName, string KgmCommonName, DateTime?KgmDateListed, DateTime?KgmAdded, DateTime?KgmModified, int?KgmByWho)
        {
            AKingdom item = new AKingdom();

            item.KgmRecID = KgmRecID;

            item.KgmName = KgmName;

            item.KgmCommonName = KgmCommonName;

            item.KgmDateListed = KgmDateListed;

            item.KgmAdded = KgmAdded;

            item.KgmModified = KgmModified;

            item.KgmByWho = KgmByWho;


            item.Save(UserName);
        }
コード例 #2
0
 public bool Destroy(object KgmRecID)
 {
     return(AKingdom.Destroy(KgmRecID) == 1);
 }
コード例 #3
0
 public bool Delete(object KgmRecID)
 {
     return(AKingdom.Delete(KgmRecID) == 1);
 }