public void AddToStockAdjusts(StockAdjust stockAdjust)
 {
     base.AddObject("StockAdjusts", stockAdjust);
 }
 public static StockAdjust CreateStockAdjust(int ID, string documentNo, global::System.DateTime documentDate, string remarks, byte[] rowVersion)
 {
     StockAdjust stockAdjust = new StockAdjust();
     stockAdjust.Id = ID;
     stockAdjust.DocumentNo = documentNo;
     stockAdjust.DocumentDate = documentDate;
     stockAdjust.Remarks = remarks;
     stockAdjust.RowVersion = rowVersion;
     return stockAdjust;
 }