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