Наследование: System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the SIPAccounts EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSIPAccounts(SIPAccount sIPAccount)
 {
     base.AddObject("SIPAccounts", sIPAccount);
 }
 /// <summary>
 /// Create a new SIPAccount object.
 /// </summary>
 /// <param name="dontMangleEnabled">Initial value of the DontMangleEnabled property.</param>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="inserted">Initial value of the Inserted property.</param>
 /// <param name="isAdminDisabled">Initial value of the IsAdminDisabled property.</param>
 /// <param name="isIncomingOnly">Initial value of the IsIncomingOnly property.</param>
 /// <param name="isSwitchboardEnabled">Initial value of the IsSwitchboardEnabled property.</param>
 /// <param name="isUserDisabled">Initial value of the IsUserDisabled property.</param>
 /// <param name="owner">Initial value of the Owner property.</param>
 /// <param name="sendNATKeepAlives">Initial value of the SendNATKeepAlives property.</param>
 /// <param name="sIPDomain">Initial value of the SIPDomain property.</param>
 /// <param name="sIPPassword">Initial value of the SIPPassword property.</param>
 /// <param name="sIPUsername">Initial value of the SIPUsername property.</param>
 public static SIPAccount CreateSIPAccount(global::System.Boolean dontMangleEnabled, global::System.String id, global::System.String inserted, global::System.Boolean isAdminDisabled, global::System.Boolean isIncomingOnly, global::System.Boolean isSwitchboardEnabled, global::System.Boolean isUserDisabled, global::System.String owner, global::System.Boolean sendNATKeepAlives, global::System.String sIPDomain, global::System.String sIPPassword, global::System.String sIPUsername)
 {
     SIPAccount sIPAccount = new SIPAccount();
     sIPAccount.DontMangleEnabled = dontMangleEnabled;
     sIPAccount.ID = id;
     sIPAccount.Inserted = inserted;
     sIPAccount.IsAdminDisabled = isAdminDisabled;
     sIPAccount.IsIncomingOnly = isIncomingOnly;
     sIPAccount.IsSwitchboardEnabled = isSwitchboardEnabled;
     sIPAccount.IsUserDisabled = isUserDisabled;
     sIPAccount.Owner = owner;
     sIPAccount.SendNATKeepAlives = sendNATKeepAlives;
     sIPAccount.SIPDomain = sIPDomain;
     sIPAccount.SIPPassword = sIPPassword;
     sIPAccount.SIPUsername = sIPUsername;
     return sIPAccount;
 }