public Product Obter(string nome)
 {
     return(_repositorioProduto.Consultar(p => p.Nome.Equals(nome)).SingleOrDefault());
 }