/// <summary>
 /// Deprecated Method for adding a new object to the GenreTypes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToGenreTypes(GenreType genreType)
 {
     base.AddObject("GenreTypes", genreType);
 }
 /// <summary>
 /// Create a new GenreType object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 /// <param name="modifiedBy">Initial value of the ModifiedBy property.</param>
 /// <param name="modifiedDate">Initial value of the ModifiedDate property.</param>
 /// <param name="timeStamp">Initial value of the TimeStamp property.</param>
 public static GenreType CreateGenreType(global::System.Int32 id, global::System.String name, global::System.Boolean isDeleted, global::System.String modifiedBy, global::System.DateTime modifiedDate, global::System.Byte[] timeStamp)
 {
     GenreType genreType = new GenreType();
     genreType.Id = id;
     genreType.Name = name;
     genreType.IsDeleted = isDeleted;
     genreType.ModifiedBy = modifiedBy;
     genreType.ModifiedDate = modifiedDate;
     genreType.TimeStamp = timeStamp;
     return genreType;
 }