/// <summary>
 /// Deprecated Method for adding a new object to the Actions EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToActions(Actions actions)
 {
     base.AddObject("Actions", actions);
 }
 /// <summary>
 /// Create a new Actions object.
 /// </summary>
 /// <param name="actionId">Initial value of the ActionId property.</param>
 /// <param name="actionName">Initial value of the ActionName property.</param>
 /// <param name="actionDescription">Initial value of the ActionDescription property.</param>
 /// <param name="actionType">Initial value of the ActionType property.</param>
 public static Actions CreateActions(global::System.String actionId, global::System.String actionName, global::System.String actionDescription, global::System.String actionType)
 {
     Actions actions = new Actions();
     actions.ActionId = actionId;
     actions.ActionName = actionName;
     actions.ActionDescription = actionDescription;
     actions.ActionType = actionType;
     return actions;
 }