Exemplo n.º 1
0
        public ActionResult <ProductInPlanActionDto> CreateProductInPlanAction(CreateProductInPlanAction newAction)
        {
            var action = _mapper.Map <ProductInPlanAction>(newAction);

            _repository.AddProductInPlanAction(action);
            return(Ok());
        }