/// <summary>
 /// Deprecated Method for adding a new object to the BusinessApplications EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToBusinessApplications(BusinessApplication businessApplication)
 {
     base.AddObject("BusinessApplications", businessApplication);
 }
 /// <summary>
 /// Create a new BusinessApplication object.
 /// </summary>
 /// <param name="businessApplicationId">Initial value of the BusinessApplicationId property.</param>
 /// <param name="businessApplicationName">Initial value of the BusinessApplicationName property.</param>
 /// <param name="creationBy">Initial value of the CreationBy property.</param>
 /// <param name="creationDate">Initial value of the CreationDate property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 public static BusinessApplication CreateBusinessApplication(global::System.Guid businessApplicationId, global::System.String businessApplicationName, global::System.String creationBy, global::System.DateTime creationDate, global::System.Boolean isDeleted)
 {
     BusinessApplication businessApplication = new BusinessApplication();
     businessApplication.BusinessApplicationId = businessApplicationId;
     businessApplication.BusinessApplicationName = businessApplicationName;
     businessApplication.CreationBy = creationBy;
     businessApplication.CreationDate = creationDate;
     businessApplication.IsDeleted = isDeleted;
     return businessApplication;
 }