/// <summary>
 /// Create a new author object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 public static author Createauthor(global::System.Int32 id, global::System.String firstName, global::System.String lastName)
 {
     author author = new author();
     author.Id = id;
     author.FirstName = firstName;
     author.LastName = lastName;
     return author;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the authors EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToauthors(author author)
 {
     base.AddObject("authors", author);
 }