Ejemplo n.º 1
0
 public static void writePatientToStorage(Patient patient)
 {
     StreamWriter file = new StreamWriter(filePath, true);
     file.WriteLine(patient.toJson());
     file.Close();
 }