готово

This commit is contained in:
ArtemEmelyanov 2022-12-14 13:01:37 +04:00
parent 2f7700a12e
commit 4b2b4e4d2c
2 changed files with 7 additions and 2 deletions

View File

@ -61,6 +61,12 @@ namespace Airbus
return false;
}
if ((plane is EntityAirbus) && !(otherPlanePlane is EntityAirbus)
|| !(plane is EntityAirbus) && (otherPlanePlane is EntityAirbus))
{
return false;
}
if (plane is EntityAirbus airbus && otherPlanePlane is EntityAirbus otherAirbus)
{
if (airbus.DopColor != otherAirbus.DopColor)

View File

@ -35,8 +35,7 @@ namespace Airbus
public int Insert(T plane)
{
if (_places.Count == _maxCount) throw new StorageOverflowException(_maxCount);
_places.Insert(0, plane);
return 0;
return Insert(plane, 0);
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию