Example #1
0
        public IActionResult CreatePatient([FromBody] CreatePatientViewModel createPatientViewModel)
        {
            var patientDTO = PatientMapper.CreatePatientVMToDTO(createPatientViewModel);

            _service.Create(patientDTO);

            return(Ok(ModelState));
        }