/// <summary>
 /// Deprecated Method for adding a new object to the Jobs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToJobs(Job job)
 {
     base.AddObject("Jobs", job);
 }
 /// <summary>
 /// Create a new Job object.
 /// </summary>
 /// <param name="jobID">Initial value of the JobID property.</param>
 /// <param name="creator">Initial value of the Creator property.</param>
 /// <param name="createdDate">Initial value of the CreatedDate property.</param>
 /// <param name="logCer">Initial value of the LogCer property.</param>
 public static Job CreateJob(global::System.String jobID, global::System.String creator, global::System.DateTime createdDate, global::System.Boolean logCer)
 {
     Job job = new Job();
     job.JobID = jobID;
     job.Creator = creator;
     job.CreatedDate = createdDate;
     job.LogCer = logCer;
     return job;
 }