feat: reordering

This commit is contained in:
2026-03-02 15:33:56 +01:00
parent 48be020dc4
commit 272ed999d8
10 changed files with 119 additions and 34 deletions

View File

@@ -209,7 +209,7 @@ namespace CarManagerV3
/// </returns>
public bool IsChanged(Car other)
{
return this.Make != other.Make || this.Model != other.Model || this.Year != other.Year || this.Color != other.Color || this.Mileage != other.Mileage || this.Price != other.Price || this.Color != other.Color;
return this.Make != other.Make || this.Model != other.Model || this.Year != other.Year || this.Color != other.Color || this.Mileage != other.Mileage || this.Price != other.Price || this.Color != other.Color || this.Order != other.Order;
}
/// <summary>