ASP.NET Web API: Listing 2.

Using the Serializable attribute.

[Serializable]
[System.Runtime.Serialization.DataContract]
public class Customer
{
  [System.Runtime.Serialization.DataMember]
  public string FirstName { get; set; }

  [System.Runtime.Serialization.DataMember]
  public string LastName { get; set; }

  [System.Runtime.Serialization.DataMember]
  public string CompanyID{get; set;}

  public Customer(string CompanyID, string FirstName, string LastName)
  {
    this.CompanyID = CompanyID;
    this.FirstName = FirstName;
    this.LastName = LastName;    
  }
}

About the Author

Peter Vogel is a system architect and principal in PH&V Information Services. PH&V provides full-stack consulting from UX design through object modeling to database design. Peter tweets about his VSM columns with the hashtag #vogelarticles. His blog posts on user experience design can be found at http://blog.learningtree.com/tag/ui/.

comments powered by Disqus

Featured

Subscribe on YouTube