/// <summary>
 /// Deprecated Method for adding a new object to the Applications EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToApplications(Application application)
 {
     base.AddObject("Applications", application);
 }
 /// <summary>
 /// Create a new Application object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="status">Initial value of the status property.</param>
 /// <param name="app_date">Initial value of the app_date property.</param>
 /// <param name="credit_check">Initial value of the credit_check property.</param>
 /// <param name="reference_check">Initial value of the reference_check property.</param>
 /// <param name="preliminary_check">Initial value of the preliminary_check property.</param>
 /// <param name="final_check">Initial value of the final_check property.</param>
 /// <param name="cust_id">Initial value of the cust_id property.</param>
 public static Application CreateApplication(global::System.Int32 id, global::System.String status, global::System.DateTime app_date, global::System.Int32 credit_check, global::System.Int32 reference_check, global::System.Int32 preliminary_check, global::System.Int32 final_check, global::System.Int32 cust_id)
 {
     Application application = new Application();
     application.id = id;
     application.status = status;
     application.app_date = app_date;
     application.credit_check = credit_check;
     application.reference_check = reference_check;
     application.preliminary_check = preliminary_check;
     application.final_check = final_check;
     application.cust_id = cust_id;
     return application;
 }