Ejemplo n.º 1
0
partial         void OnOembedChanging(ContactOembed value);
Ejemplo n.º 2
0
 public static Contact CreateContact(string ID, global::System.DateTime date, ContactOembed oembed)
 {
     Contact contact = new Contact();
     contact.Id = ID;
     contact.Date = date;
     if ((oembed == null))
     {
         throw new global::System.ArgumentNullException("oembed");
     }
     contact.Oembed = oembed;
     return contact;
 }