/// <summary>
 /// Create a new Deploy object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="serverID">Initial value of the ServerID property.</param>
 /// <param name="releasePackageID">Initial value of the ReleasePackageID property.</param>
 /// <param name="status">Initial value of the Status property.</param>
 /// <param name="createdDate">Initial value of the CreatedDate property.</param>
 public static Deploy CreateDeploy(global::System.Int32 id, global::System.Int32 serverID, global::System.Int32 releasePackageID, global::System.Int32 status, global::System.DateTime createdDate)
 {
     Deploy deploy = new Deploy();
     deploy.ID = id;
     deploy.ServerID = serverID;
     deploy.ReleasePackageID = releasePackageID;
     deploy.Status = status;
     deploy.CreatedDate = createdDate;
     return deploy;
 }
Example #2
0
 public void CreateDeploy(Deploy source)
 {
     context.Deploy.AddObject(source);
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Deploy EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDeploy(Deploy deploy)
 {
     base.AddObject("Deploy", deploy);
 }