Ejemplo n.º 1
0
        public void AddBulk(IEnumerable <PatientRequestDTO> entities)
        {
            var addCommand = _mapper.Map <IEnumerable <Patient> >(entities);

            _patientService.AddBulk(addCommand);
        }