public IEnumerable <PratosIngredientes> Post([FromBody] PratosIngredientes pratosIngredientes)
 {
     _repo.Incluir(pratosIngredientes);
     return(_repo.SelecionarTodos());
 }
 public List <PratosIngredientesViewModel> SelecionarTodos()
 {
     return(_mapper.Map <List <PratosIngredientesViewModel> >(_repo.SelecionarTodos()));
 }