/// <summary> /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToEmployees(Employee employee) { base.AddObject("Employees", employee); }
/// <summary> /// Create a new Employee object. /// </summary> /// <param name="emp_Code">Initial value of the Emp_Code property.</param> public static Employee CreateEmployee(global::System.String emp_Code) { Employee employee = new Employee(); employee.Emp_Code = emp_Code; return employee; }