コード例 #1
0
        public static PhoneType CreatePhoneType(int phoneTypeId, string description, int sequence)
        {
            PhoneType phoneType = new PhoneType()
            {
                PhoneTypeId = phoneTypeId,
                Description = description,
                Sequence    = sequence
            };

            return(phoneType);
        }
コード例 #2
0
 public void AddToPhoneTypes(PhoneType phoneType)
 {
     base.AddObject("PhoneTypes", phoneType);
 }