/// <summary>
 /// Deprecated Method for adding a new object to the Catalogues EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCatalogues(Catalogue catalogue)
 {
     base.AddObject("Catalogues", catalogue);
 }
 /// <summary>
 /// Create a new Catalogue object.
 /// </summary>
 /// <param name="version">Initial value of the Version property.</param>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="tid">Initial value of the Tid property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="createdBy">Initial value of the CreatedBy property.</param>
 /// <param name="modifiedBy">Initial value of the ModifiedBy property.</param>
 /// <param name="created">Initial value of the Created property.</param>
 /// <param name="modified">Initial value of the Modified property.</param>
 public static Catalogue CreateCatalogue(global::System.String version, global::System.Int64 id, global::System.String tid, global::System.String name, global::System.String createdBy, global::System.String modifiedBy, global::System.DateTimeOffset created, global::System.DateTimeOffset modified)
 {
     Catalogue catalogue = new Catalogue();
     catalogue.Version = version;
     catalogue.Id = id;
     catalogue.Tid = tid;
     catalogue.Name = name;
     catalogue.CreatedBy = createdBy;
     catalogue.ModifiedBy = modifiedBy;
     catalogue.Created = created;
     catalogue.Modified = modified;
     return catalogue;
 }