コード例 #1
0
 public TestObjectWithContacts(Contact[] values)
 {
     Values = values;
 }
コード例 #2
0
 internal static CfContact FromContact(Contact source)
 {
     return source == null ? null 
         : new CfContact(source.id, source.firstName, source.lastName, source.zipcode, source.homePhone,
             source.workPhone, source.mobilePhone, source.externalId, source.externalSystem, source.AnyAttr);
 }