PIBD-14_Lavrova_K.I._LabWork06.Simple #9

Closed
Kristik wants to merge 2 commits from LabWork06 into LabWork05
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 6fbcfc7488 - Show all commits

View File

@ -39,7 +39,7 @@ public abstract class AbstractCompany
_pictureWidth = picWidth;
_pictureHeight = picHeight;
_collection = collection;
_collection.SetMaxCount = GetMaxCount;
_collection.MaxCount = GetMaxCount;
}
/// <summary>
/// Перегрузка оператора сложения для класса

View File

@ -41,6 +41,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
public int SetMaxCount { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
/// <summary>
/// Конструктор
/// </summary>