This commit is contained in:
Yunusov_Niyaz 2023-10-21 13:10:15 +04:00
parent 2807485943
commit 04fb769aef
2 changed files with 6 additions and 32 deletions

View File

@ -9,7 +9,6 @@ namespace ProjectTrolleybus
private AbstractStrategy? _strategy;
public DrawingBus? SelectedBus { get; private set; }
public FormTrolleybus()
{
InitializeComponent();

View File

@ -9,39 +9,22 @@ namespace ProjectTrolleybus.Generics
internal class SetGeneric<T>
where T : class
{
/// <summary>
/// Массив объектов, которые храним
/// </summary>
private readonly T?[] _places;
/// <summary>
/// Количество объектов в массиве
/// </summary>
public int Count => _places.Length;
/// <summary>
/// Конструктор
/// </summary>
/// <param name="count"></param>
public SetGeneric(int count)
{
_places = new T?[count];
}
/// <summary>
/// Добавление объекта в набор
/// </summary>
/// <param name="trolleybus">Добавляемый автомобиль</param>
/// <returns></returns>
public bool Insert(T trolleybus)
{
if (_places[Count - 1] != null)
return false;
return Insert(trolleybus, 0);///
}
/// <summary>
/// Добавление объекта в набор на конкретную позицию
/// </summary>
/// <param name="trolleybus">Добавляемый автомобиль</param>
/// <param name="position">Позиция</param>
/// <returns></returns>
public bool Insert(T trolleybus, int position)
{
if (!(position >= 0 && position < Count))
@ -59,11 +42,7 @@ namespace ProjectTrolleybus.Generics
_places[position] = trolleybus;
return true;
}
/// <summary>
/// Удаление объекта из набора с конкретной позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public bool Remove(int position)
{
if (!(position >= 0 && position < Count) || _places[position] == null)
@ -71,11 +50,7 @@ namespace ProjectTrolleybus.Generics
_places[position] = null;
return true;
}
/// <summary>
/// Получение объекта из набора по позиции
/// </summary>
/// <param name="position"></param>
/// <returns></returns>
public T? Get(int position)
{
if (!(position >= 0 && position < Count))