示例#1
0
 /// <summary>
 /// Create a new Department object.
 /// </summary>
 /// <param name="departmentID">Initial value of the DepartmentID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="budget">Initial value of the Budget property.</param>
 /// <param name="startDate">Initial value of the StartDate property.</param>
 /// <param name="code">Initial value of the Code property.</param>
 public static Department CreateDepartment(global::System.Int32 departmentID, global::System.String name, global::System.Decimal budget, global::System.DateTime startDate, global::System.String code)
 {
     Department department = new Department();
     department.DepartmentID = departmentID;
     department.Name = name;
     department.Budget = budget;
     department.StartDate = startDate;
     department.Code = code;
     return department;
 }
示例#2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Departments EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDepartments(Department department)
 {
     base.AddObject("Departments", department);
 }