示例#1
0
        public void Insert(int InfoPhoneTypeKey,string PhoneTypeText)
        {
            InfoPhoneType item = new InfoPhoneType();

            item.InfoPhoneTypeKey = InfoPhoneTypeKey;

            item.PhoneTypeText = PhoneTypeText;

            item.Save(UserName);
        }
示例#2
0
        public void Update(int InfoPhoneTypeKey,string PhoneTypeText)
        {
            InfoPhoneType item = new InfoPhoneType();
            item.MarkOld();
            item.IsLoaded = true;

            item.InfoPhoneTypeKey = InfoPhoneTypeKey;

            item.PhoneTypeText = PhoneTypeText;

            item.Save(UserName);
        }