Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
106 espaco 1
package br.com.ec.domain.dto;
2
 
3
public class RankingProdutosGeneroDTO {
4
 
5
        private String tipoEstilo;
6
        private String tipoGenero;
7
        private Integer quantidadeVendas;
8
        private Integer quantidadeEstoque;
9
 
10
        public RankingProdutosGeneroDTO() {}
11
 
12
        public RankingProdutosGeneroDTO(String tipoEstilo, String tipoGenero, Integer quantidadeVendas, Integer quantidadeEstoque) {
13
                this.tipoEstilo = tipoEstilo;
14
                this.tipoGenero = tipoGenero;
15
                this.quantidadeVendas = quantidadeVendas;
16
                this.quantidadeEstoque = quantidadeEstoque;
17
        }
18
 
19
        public String getTipoEstilo() {
20
                return tipoEstilo;
21
        }
22
        public void setTipoEstilo(String tipoEstilo) {
23
                this.tipoEstilo = tipoEstilo;
24
        }
25
 
26
        public String getTipoGenero() {
27
                return tipoGenero;
28
        }
29
        public void setTipoGenero(String tipoGenero) {
30
                this.tipoGenero = tipoGenero;
31
        }
32
 
33
        public Integer getQuantidadeVendas() {
34
                return quantidadeVendas;
35
        }
36
        public void setQuantidadeVendas(Integer quantidadeVendas) {
37
                this.quantidadeVendas = quantidadeVendas;
38
        }
39
 
40
        public Integer getQuantidadeEstoque() {
41
                return quantidadeEstoque;
42
        }
43
        public void setQuantidadeEstoque(Integer quantidadeEstoque) {
44
                this.quantidadeEstoque = quantidadeEstoque;
45
        }
46
 
47
}