Ejemplo n.º 1
0
        public async Task <ActionResult <Patient> > Create(Patient patient)
        {
            patient.Id = Guid.NewGuid().ToString();

            await _patientService.AddItemAsync(patient);

            return(patient);
        }