/// <summary>
 /// Deprecated Method for adding a new object to the USERs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUSERs(USER uSER)
 {
     base.AddObject("USERs", uSER);
 }
 /// <summary>
 /// Create a new USER object.
 /// </summary>
 /// <param name="uSERID">Initial value of the USERID property.</param>
 /// <param name="uSERNAME">Initial value of the USERNAME property.</param>
 /// <param name="pASSWORD">Initial value of the PASSWORD property.</param>
 public static USER CreateUSER(global::System.Int32 uSERID, global::System.String uSERNAME, global::System.String pASSWORD)
 {
     USER uSER = new USER();
     uSER.USERID = uSERID;
     uSER.USERNAME = uSERNAME;
     uSER.PASSWORD = pASSWORD;
     return uSER;
 }