/// <summary>
 /// Create a new dept_emp object.
 /// </summary>
 /// <param name="emp_no">Initial value of the emp_no property.</param>
 /// <param name="dept_no">Initial value of the dept_no property.</param>
 /// <param name="from_date">Initial value of the from_date property.</param>
 /// <param name="to_date">Initial value of the to_date property.</param>
 public static dept_emp Createdept_emp(global::System.Int32 emp_no, global::System.String dept_no, global::System.DateTime from_date, global::System.DateTime to_date)
 {
     dept_emp dept_emp = new dept_emp();
     dept_emp.emp_no = emp_no;
     dept_emp.dept_no = dept_no;
     dept_emp.from_date = from_date;
     dept_emp.to_date = to_date;
     return dept_emp;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the dept_emp EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTodept_emp(dept_emp dept_emp)
 {
     base.AddObject("dept_emp", dept_emp);
 }