forked from wennstrom/krankenhausHospitalSimulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
38 lines (32 loc) · 1.1 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using KrankenhausSjukhuset.Creator;
using KrankenhausSjukhuset.Resetes;
using KrankenhausSjukhuset.StatisticsEvent;
namespace KrankenhausSjukhuset
{
class Program
{
static void Main(string[] args)
{
var simulation = new Simulation();
var patientReset = new PatientReset();
var statusReset = new StatusReset();
var logger = new KrankenhausStatisticsFileLogger();
var statusCreator = new StatusCreator();
logger.ClearFile();
statusReset.ResetAll();
patientReset.Reset();
statusCreator.CreateAll();
DateTime startTime = DateTime.Now;
Console.WriteLine("simulating ... \n");
simulation.Starter();
var runTime = CalculateRuntime(startTime);
Console.WriteLine($"\napplication runtime: {runTime}");
Console.ReadLine();
}
static TimeSpan CalculateRuntime(DateTime startTime)
{
return DateTime.Now - startTime;
}
}
}