Ejemplo n.º 1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEmployees(Employee employee)
 {
     base.AddObject("Employees", employee);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new Employee object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="email">Initial value of the email property.</param>
 /// <param name="city">Initial value of the City property.</param>
 public static Employee CreateEmployee(global::System.Int32 id, global::System.String name, global::System.String email, global::System.String city)
 {
     Employee employee = new Employee();
     employee.Id = id;
     employee.Name = name;
     employee.email = email;
     employee.City = city;
     return employee;
 }