Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 106 | espaco | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.ArrayList; |
||
| 4 | import java.util.Date; |
||
| 5 | import java.util.List; |
||
| 6 | |||
| 7 | public class CartaoResumoGeralDTO { |
||
| 8 | |||
| 9 | private Date dataInicialVendasSelecionada; |
||
| 10 | private Date dataFinalVendasSelecionada; |
||
| 11 | private List<CartaoResumoDTO> cartoesResumo; |
||
| 12 | |||
| 13 | public CartaoResumoGeralDTO() { |
||
| 14 | setCartoesResumo(new ArrayList<CartaoResumoDTO>()); |
||
| 15 | } |
||
| 16 | |||
| 17 | public Date getDataInicialVendasSelecionada() { |
||
| 18 | return dataInicialVendasSelecionada; |
||
| 19 | } |
||
| 20 | public void setDataInicialVendasSelecionada(Date dataInicialVendasSelecionada) { |
||
| 21 | this.dataInicialVendasSelecionada = dataInicialVendasSelecionada; |
||
| 22 | } |
||
| 23 | |||
| 24 | public Date getDataFinalVendasSelecionada() { |
||
| 25 | return dataFinalVendasSelecionada; |
||
| 26 | } |
||
| 27 | public void setDataFinalVendasSelecionada(Date dataFinalVendasSelecionada) { |
||
| 28 | this.dataFinalVendasSelecionada = dataFinalVendasSelecionada; |
||
| 29 | } |
||
| 30 | |||
| 31 | public List<CartaoResumoDTO> getCartoesResumo() { |
||
| 32 | return cartoesResumo; |
||
| 33 | } |
||
| 34 | public void setCartoesResumo(List<CartaoResumoDTO> cartoesResumo) { |
||
| 35 | this.cartoesResumo = cartoesResumo; |
||
| 36 | } |
||
| 37 | |||
| 38 | } |