Exemple #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the States EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToStates(State state)
 {
     base.AddObject("States", state);
 }
Exemple #2
0
 /// <summary>
 /// Create a new State object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="stateName">Initial value of the StateName property.</param>
 /// <param name="stateAbbr">Initial value of the StateAbbr property.</param>
 /// <param name="countryId">Initial value of the CountryId property.</param>
 public static State CreateState(global::System.Int32 id, global::System.String stateName, global::System.String stateAbbr, global::System.Int32 countryId)
 {
     State state = new State();
     state.Id = id;
     state.StateName = stateName;
     state.StateAbbr = stateAbbr;
     state.CountryId = countryId;
     return state;
 }