/// <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="id">Initial value of the Id property.</param> /// <param name="hireDate">Initial value of the HireDate property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="iqamaNo">Initial value of the IqamaNo property.</param> /// <param name="gender">Initial value of the Gender property.</param> /// <param name="salaryType">Initial value of the SalaryType property.</param> /// <param name="rowVersion">Initial value of the RowVersion property.</param> public static Employee CreateEmployee(global::System.Int32 id, global::System.DateTime hireDate, global::System.String name, global::System.String iqamaNo, global::System.String gender, global::System.String salaryType, global::System.Byte[] rowVersion) { Employee employee = new Employee(); employee.Id = id; employee.HireDate = hireDate; employee.Name = name; employee.IqamaNo = iqamaNo; employee.Gender = gender; employee.SalaryType = salaryType; employee.RowVersion = rowVersion; return employee; }
/// <summary> /// Create a new Employee object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="lastName">Initial value of the LastName property.</param> /// <param name="firstName">Initial value of the FirstName property.</param> /// <param name="userName">Initial value of the UserName property.</param> /// <param name="email">Initial value of the Email property.</param> /// <param name="current">Initial value of the Current property.</param> /// <param name="rowVersion">Initial value of the RowVersion property.</param> public static Employee CreateEmployee(global::System.Int32 id, global::System.String lastName, global::System.String firstName, global::System.String userName, global::System.String email, global::System.Boolean current, global::System.Byte[] rowVersion) { Employee employee = new Employee(); employee.Id = id; employee.LastName = lastName; employee.FirstName = firstName; employee.UserName = userName; employee.Email = email; employee.Current = current; employee.RowVersion = rowVersion; return employee; }