public static PhoneType CreatePhoneType(int phoneTypeId, string description, int sequence) { PhoneType phoneType = new PhoneType() { PhoneTypeId = phoneTypeId, Description = description, Sequence = sequence }; return(phoneType); }
public void AddToPhoneTypes(PhoneType phoneType) { base.AddObject("PhoneTypes", phoneType); }