/// <summary>
 /// Updates the value of the current installed version within the subtext_Version table.
 /// </summary>
 /// <param name="newVersion">New version.</param>
 /// <param name="transaction">The transaction to perform this action within.</param>
 public static void UpdateInstallationVersionNumber(Version newVersion, SqlTransaction transaction)
 {
     var procedures = new StoredProcedures(transaction);
     procedures.VersionAdd(newVersion.Major, newVersion.Minor, newVersion.Build, DateTime.Now);
 }