/// <summary>
 /// Deprecated Method for adding a new object to the Executables EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToExecutables(Executable executable)
 {
     base.AddObject("Executables", executable);
 }
 /// <summary>
 /// Create a new Executable object.
 /// </summary>
 /// <param name="executableID">Initial value of the ExecutableID property.</param>
 /// <param name="testCaseID">Initial value of the TestCaseID property.</param>
 /// <param name="testCaseVersionID">Initial value of the TestCaseVersionID property.</param>
 /// <param name="fileNamePath">Initial value of the FileNamePath property.</param>
 /// <param name="executableWaitTime">Initial value of the ExecutableWaitTime property.</param>
 public static Executable CreateExecutable(global::System.Guid executableID, global::System.Guid testCaseID, global::System.Int16 testCaseVersionID, global::System.String fileNamePath, global::System.Int32 executableWaitTime)
 {
     Executable executable = new Executable();
     executable.ExecutableID = executableID;
     executable.TestCaseID = testCaseID;
     executable.TestCaseVersionID = testCaseVersionID;
     executable.FileNamePath = fileNamePath;
     executable.ExecutableWaitTime = executableWaitTime;
     return executable;
 }