Ejemplo n.º 1
0
        public void AddStorage(ConstructionMaterialStorage storage)
        {
            if (storage == null)
            {
                throw new ArgumentNullException(nameof(storage));
            }

            constructionMaterialStorages.Add(storage);
        }
Ejemplo n.º 2
0
 public void RemoveStorage(ConstructionMaterialStorage storage)
 {
     constructionMaterialStorages.Remove(storage);
 }