Ejemplo n.º 1
0
        public IActionResult Create(DrugViewModelEdit drugViewModelEdit)
        {
            var drug = _mapper.Map <Drug>(drugViewModelEdit);

            _drugService.Add(drug);
            _drugService.Save();
            return(RedirectToAction("Index"));
        }