public void Incluir(IngredienteViewModel entity)
 {
     _repo.Incluir(_mapper.Map <Ingrediente>(entity));
 }
 public void Alterar(IngredienteViewModel entity)
 {
     _repo.Alterar(_mapper.Map <Ingrediente>(entity));
 }