public void Incluir(IngredienteViewModel entity) { _repo.Incluir(_mapper.Map <Ingrediente>(entity)); }
public IEnumerable <Ingrediente> Post([FromBody] Ingrediente ingrediente) { _repo.Incluir(ingrediente); return(_repo.SelecionarTodos()); }