Last active
May 29, 2020 12:52
-
-
Save TheoOliveira/3efc5fb5e0c2d2c615af6757df75112e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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