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