public IActionResult DeletePatient([GuidNotEmpty] Guid id)
        {
            Patient patient = null;

            patient = _patientDbService.FindPatient(id);
            if (patient == null)
            {
                return(ReturnProblem("Patient not found.", StatusCodes.Status404NotFound));
            }

            DeletePatientContact(id);

            _patientDbService.RemovePatient(patient);

            return(NoContent());
        }