Files
SammelmappeOOP/warehouse/Program.cs
2024-07-25 15:47:46 +02:00

16 lines
329 B
C#

namespace warehouse
{
internal class Program
{
static void Main(string[] args)
{
Warehouse bestand = new Warehouse("test", 20, 80, 100034);
bestand.PrintInfo();
bestand.Verkauf();
bestand.Einkauf();
}
}
}