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

18 lines
499 B
C#

using System.Runtime.InteropServices;
using System.Threading.Channels;
namespace Jobs
{
internal class Program
{
static void Main(string[] args)
{
JobVerwaltung jobs = new JobVerwaltung();
jobs.AddJob(new Jobs("print","office",104));
jobs.AddJob(new Jobs("Menu","ich",80));
jobs.AddJob(new Jobs("Kaffee kochen","der Chef mir",8));
jobs.GetJobDone();
jobs.ShowAllJobs();
}
}
}