예제 #1
0
 /// <summary>
 /// Create a new Worker 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 Worker CreateWorker(global::System.Int32 id, global::System.String firstName, global::System.String lastName)
 {
     Worker worker = new Worker();
     worker.ID = id;
     worker.FirstName = firstName;
     worker.LastName = lastName;
     return worker;
 }
예제 #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Workers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToWorkers(Worker worker)
 {
     base.AddObject("Workers", worker);
 }