instantiate

This commit is contained in:
Ivan Hörler 2018-07-17 21:16:24 +02:00
parent 61e2161b71
commit f8e2705de3
2 changed files with 3 additions and 5 deletions

View File

@ -50,10 +50,8 @@ namespace EHEC_Server
{
WriteJson();
ClusterConverter w = new ClusterConverter();
w.WriteJson();

View File

@ -24,7 +24,7 @@ namespace EHEC_Server
Id = element.PatientId,
Name = element.FirstName + " " + element.LastName
};
ClusterPatients.Add(clusterPatient);
this.ClusterPatients.Add(clusterPatient);
}
return ClusterPatients;
}