Final_Form

This commit is contained in:
marcusferl@weifer.de 2022-11-02 09:17:31 +01:00
parent 4bbe404512
commit d22da6eec4

View File

@ -17,7 +17,6 @@ namespace Artikelverwaltung
public uint Lagerbestand { get => _Lagerbestand; set => _Lagerbestand = value; }
public uint Kapazitaet { get => _Kapazitaet; }
//Konstruktoren
public Lager()
{
@ -32,7 +31,6 @@ namespace Artikelverwaltung
_Kapazitaet = kapazitaet;
Lagerbestand = lagerbestand;
}
// Operationen
public bool Einlagern(Artikel item, int menge)
{