/// <summary> /// Create a new StkOutCst object. /// </summary> /// <param name="stockOutId">Initial value of StockOutId.</param> /// <param name="costType">Initial value of CostType.</param> /// <param name="stockoutId">Initial value of StockoutId.</param> public static StkOutCst CreateStkOutCst(long stockOutId, long costType, long stockoutId) { StkOutCst stkOutCst = new StkOutCst(); stkOutCst.StockOutId = stockOutId; stkOutCst.CostType = costType; stkOutCst.StockoutId = stockoutId; return stkOutCst; }
/// <summary> /// Deprecated Method for adding a new object to the StkOutCsts EntitySet. /// </summary> public void AddToStkOutCsts(StkOutCst stkOutCst) { base.AddObject("StkOutCsts", stkOutCst); }