/// <summary>
 /// Deprecated Method for adding a new object to the SubStatus EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSubStatus(SubStatu subStatu)
 {
     base.AddObject("SubStatus", subStatu);
 }
 /// <summary>
 /// Create a new SubStatu object.
 /// </summary>
 /// <param name="testCaseID">Initial value of the TestCaseID property.</param>
 /// <param name="testCaseVersionID">Initial value of the TestCaseVersionID property.</param>
 /// <param name="testRunID">Initial value of the TestRunID property.</param>
 /// <param name="subStatusID">Initial value of the SubStatusID property.</param>
 /// <param name="subStatusValue">Initial value of the SubStatusValue property.</param>
 /// <param name="message">Initial value of the Message property.</param>
 /// <param name="messageDate">Initial value of the MessageDate property.</param>
 /// <param name="errorCount">Initial value of the ErrorCount property.</param>
 /// <param name="pixelDiffCount">Initial value of the PixelDiffCount property.</param>
 public static SubStatu CreateSubStatu(global::System.Guid testCaseID, global::System.Int16 testCaseVersionID, global::System.Guid testRunID, global::System.Guid subStatusID, global::System.String subStatusValue, global::System.String message, global::System.DateTime messageDate, global::System.Int32 errorCount, global::System.Int32 pixelDiffCount)
 {
     SubStatu subStatu = new SubStatu();
     subStatu.TestCaseID = testCaseID;
     subStatu.TestCaseVersionID = testCaseVersionID;
     subStatu.TestRunID = testRunID;
     subStatu.SubStatusID = subStatusID;
     subStatu.SubStatusValue = subStatusValue;
     subStatu.Message = message;
     subStatu.MessageDate = messageDate;
     subStatu.ErrorCount = errorCount;
     subStatu.PixelDiffCount = pixelDiffCount;
     return subStatu;
 }