18 lines
499 B
C#
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();
|
|
}
|
|
}
|
|
} |