Example #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the RFQs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRFQs(RFQ rFQ)
 {
     base.AddObject("RFQs", rFQ);
 }
Example #2
0
 /// <summary>
 /// Create a new RFQ object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="requestId">Initial value of the RequestId property.</param>
 /// <param name="rfqNumber">Initial value of the RfqNumber property.</param>
 /// <param name="vendorId">Initial value of the VendorId property.</param>
 /// <param name="issuedBy">Initial value of the IssuedBy property.</param>
 /// <param name="dateRequired">Initial value of the DateRequired property.</param>
 /// <param name="date_created">Initial value of the date_created property.</param>
 /// <param name="isQuoted">Initial value of the IsQuoted property.</param>
 public static RFQ CreateRFQ(global::System.Guid id, global::System.Guid requestId, global::System.Int32 rfqNumber, global::System.Int32 vendorId, global::System.Guid issuedBy, global::System.DateTime dateRequired, global::System.DateTime date_created, global::System.Boolean isQuoted)
 {
     RFQ rFQ = new RFQ();
     rFQ.Id = id;
     rFQ.RequestId = requestId;
     rFQ.RfqNumber = rfqNumber;
     rFQ.VendorId = vendorId;
     rFQ.IssuedBy = issuedBy;
     rFQ.DateRequired = dateRequired;
     rFQ.date_created = date_created;
     rFQ.IsQuoted = isQuoted;
     return rFQ;
 }