/// <summary> /// Create a new ReicptOut object. /// </summary> /// <param name="receiptOutId">Initial value of ReceiptOutId.</param> /// <param name="departmentId">Initial value of DepartmentId.</param> public static ReicptOut CreateReicptOut(long receiptOutId, long departmentId) { ReicptOut reicptOut = new ReicptOut(); reicptOut.ReceiptOutId = receiptOutId; reicptOut.DepartmentId = departmentId; return reicptOut; }
/// <summary> /// Deprecated Method for adding a new object to the ReicptOuts EntitySet. /// </summary> public void AddToReicptOuts(ReicptOut reicptOut) { base.AddObject("ReicptOuts", reicptOut); }