Пример #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);
 }
Пример #2
0
 /// <summary>
 /// Create a new Employee object.
 /// </summary>
 /// <param name="employeeID">Initial value of the EmployeeID property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="employeeTypeID">Initial value of the EmployeeTypeID property.</param>
 /// <param name="addressID">Initial value of the AddressID property.</param>
 public static Employee CreateEmployee(global::System.Int32 employeeID, global::System.String firstName, global::System.Int32 employeeTypeID, global::System.Int32 addressID)
 {
     Employee employee = new Employee();
     employee.EmployeeID = employeeID;
     employee.FirstName = firstName;
     employee.EmployeeTypeID = employeeTypeID;
     employee.AddressID = addressID;
     return employee;
 }