/// <summary> /// Create a new EMPLOYEE object. /// </summary> /// <param name="gLOBAL_ID">Initial value of the GLOBAL_ID property.</param> /// <param name="fIRST_NAME">Initial value of the FIRST_NAME property.</param> /// <param name="lAST_NAME">Initial value of the LAST_NAME property.</param> /// <param name="eMAIL">Initial value of the EMAIL property.</param> public static EMPLOYEE CreateEMPLOYEE(global::System.String gLOBAL_ID, global::System.String fIRST_NAME, global::System.String lAST_NAME, global::System.String eMAIL) { EMPLOYEE eMPLOYEE = new EMPLOYEE(); eMPLOYEE.GLOBAL_ID = gLOBAL_ID; eMPLOYEE.FIRST_NAME = fIRST_NAME; eMPLOYEE.LAST_NAME = lAST_NAME; eMPLOYEE.EMAIL = eMAIL; return eMPLOYEE; }
/// <summary> /// Deprecated Method for adding a new object to the EMPLOYEEs EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToEMPLOYEEs(EMPLOYEE eMPLOYEE) { base.AddObject("EMPLOYEEs", eMPLOYEE); }