/// <summary>
 /// Create a new SimPrd object.
 /// </summary>
 /// <param name="baseProductId">Initial value of BaseProductId.</param>
 /// <param name="otherProductId">Initial value of OtherProductId.</param>
 public static SimPrd CreateSimPrd(long baseProductId, long otherProductId)
 {
     SimPrd simPrd = new SimPrd();
     simPrd.BaseProductId = baseProductId;
     simPrd.OtherProductId = otherProductId;
     return simPrd;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the SimPrds EntitySet.
 /// </summary>
 public void AddToSimPrds(SimPrd simPrd)
 {
     base.AddObject("SimPrds", simPrd);
 }