Skip to content

Instantly share code, notes, and snippets.

@TheoOliveira
Last active May 29, 2020 12:52
Show Gist options
  • Select an option

  • Save TheoOliveira/3efc5fb5e0c2d2c615af6757df75112e to your computer and use it in GitHub Desktop.

Select an option

Save TheoOliveira/3efc5fb5e0c2d2c615af6757df75112e to your computer and use it in GitHub Desktop.
public with sharing class ProdutoFloricultura2 {
public Id ProdutoId{get; set;}
private String Produto {get; set;}
private String categoriaItem{get; set;}
private Integer Estoque {get; set;}
private Double Preco {get; set;}
public ProdutoFloricultura2(String prod, String cat, Integer est, Double precoProd ){
Produto = prod;
categoriaItem = cat;
Estoque = est;
Preco = precoProd;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment