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