/// <summary>
        /// Create a new C3TEmployees object.
        /// </summary>
        /// <param name="employeeId">Initial value of the EmployeeId property.</param>
        /// <param name="empTitle">Initial value of the EmpTitle property.</param>
        /// <param name="empFirstName">Initial value of the EmpFirstName property.</param>
        /// <param name="empLastName">Initial value of the EmpLastName property.</param>
        /// <param name="empIsActive">Initial value of the EmpIsActive property.</param>
        /// <param name="empDeptId">Initial value of the EmpDeptId property.</param>
        public static C3TEmployees CreateC3TEmployees(global::System.Int32 employeeId, global::System.String empTitle, global::System.String empFirstName, global::System.String empLastName, global::System.Boolean empIsActive, global::System.Int32 empDeptId)
        {
            C3TEmployees c3TEmployees = new C3TEmployees();

            c3TEmployees.EmployeeId   = employeeId;
            c3TEmployees.EmpTitle     = empTitle;
            c3TEmployees.EmpFirstName = empFirstName;
            c3TEmployees.EmpLastName  = empLastName;
            c3TEmployees.EmpIsActive  = empIsActive;
            c3TEmployees.EmpDeptId    = empDeptId;
            return(c3TEmployees);
        }
 /// <summary>
 /// Deprecated Method for adding a new object to the C3TEmployees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToC3TEmployees(C3TEmployees c3TEmployees)
 {
     base.AddObject("C3TEmployees", c3TEmployees);
 }