Example #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the SecurityItems EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSecurityItems(SecurityItem securityItem)
 {
     base.AddObject("SecurityItems", securityItem);
 }
Example #2
0
 /// <summary>
 /// Create a new SecurityItem object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="entityID">Initial value of the EntityID property.</param>
 /// <param name="lastUpdated">Initial value of the LastUpdated property.</param>
 /// <param name="lastUpdatedBy">Initial value of the LastUpdatedBy property.</param>
 public static SecurityItem CreateSecurityItem(global::System.Int32 id, global::System.String name, global::System.String description, global::System.Int32 entityID, global::System.DateTime lastUpdated, global::System.String lastUpdatedBy)
 {
     SecurityItem securityItem = new SecurityItem();
     securityItem.ID = id;
     securityItem.Name = name;
     securityItem.Description = description;
     securityItem.EntityID = entityID;
     securityItem.LastUpdated = lastUpdated;
     securityItem.LastUpdatedBy = lastUpdatedBy;
     return securityItem;
 }