public void Insert(int InfoPhoneTypeKey,string PhoneTypeText) { InfoPhoneType item = new InfoPhoneType(); item.InfoPhoneTypeKey = InfoPhoneTypeKey; item.PhoneTypeText = PhoneTypeText; item.Save(UserName); }
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); }