You can implement the following guidelines:
1) use established or known methods, examples:
createPatientRecord();
createPatientAppointment();
createPatientCheckup();
2) returning values:
3) consistent arguments ordering/sequence
recallPatientRecord(long patientId, long hospitalId);
recallPatientRecord(long patientId);
recallPatientRecord(long patientId, long hospitalId, int disciplineCode);