/// <summary>
 /// Deprecated Method for adding a new object to the OutcomeModels EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToOutcomeModels(OutcomeModel outcomeModel)
 {
     base.AddObject("OutcomeModels", outcomeModel);
 }
 /// <summary>
 /// Create a new OutcomeModel object.
 /// </summary>
 /// <param name="message">Initial value of the Message property.</param>
 /// <param name="related">Initial value of the Related property.</param>
 /// <param name="proofOutcomeByte">Initial value of the ProofOutcomeByte property.</param>
 /// <param name="warningTypeByte">Initial value of the WarningTypeByte property.</param>
 /// <param name="subroutineLocalId">Initial value of the SubroutineLocalId property.</param>
 /// <param name="blockIndex">Initial value of the BlockIndex property.</param>
 /// <param name="apcIndex">Initial value of the ApcIndex property.</param>
 public static OutcomeModel CreateOutcomeModel(global::System.String message, global::System.Boolean related, global::System.Byte proofOutcomeByte, global::System.Byte warningTypeByte, global::System.Int32 subroutineLocalId, global::System.Int32 blockIndex, global::System.Int32 apcIndex)
 {
     OutcomeModel outcomeModel = new OutcomeModel();
     outcomeModel.Message = message;
     outcomeModel.Related = related;
     outcomeModel.ProofOutcomeByte = proofOutcomeByte;
     outcomeModel.WarningTypeByte = warningTypeByte;
     outcomeModel.SubroutineLocalId = subroutineLocalId;
     outcomeModel.BlockIndex = blockIndex;
     outcomeModel.ApcIndex = apcIndex;
     return outcomeModel;
 }