/// <summary>
 /// Create a new Author object.
 /// </summary>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="adminId">Initial value of the AdminId property.</param>
 public static Author CreateAuthor(global::System.String firstName, global::System.String lastName, global::System.Int32 adminId)
 {
     Author author = new Author();
     author.FirstName = firstName;
     author.LastName = lastName;
     author.AdminId = adminId;
     return author;
 }
 public void Add(Author item)
 {
     throw new NotImplementedException();
 }
 /// <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);
 }