add Programmyday form github
This commit is contained in:
18
Capitalize/Program.cs
Normal file
18
Capitalize/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user