Ejemplo n.º 1
0
		/// <summary>
		/// Create a new Employee object.
		/// </summary>
		/// <param name="id">Initial value of the Id property.</param>
		/// <param name="fio">Initial value of the Fio property.</param>
		/// <param name="organizationId">Initial value of the OrganizationId property.</param>
		public static Employee CreateEmployee(global::System.Int32 id, global::System.String fio, global::System.Int32 organizationId)
		{
			Employee employee = new Employee();
			employee.Id = id;
			employee.Fio = fio;
			employee.OrganizationId = organizationId;
			return employee;
		}
Ejemplo n.º 2
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);
		}