package com.softgraf.vendas.model.pojo;

import java.util.Date;

public class Pedido {

	private Integer id;
	private Date data; // java.util.Date
	private Cliente cliente;

	public Pedido() {
		// chama o construtor com 3 parametros
		this(null, null, null);
	}

	// CTRL 3 GCUF
	public Pedido(Integer id, Date data, Cliente cliente) {
		this.id = id;
		this.data = data;
		this.cliente = cliente;
	}

	// getters e setters -> CTRL 3 GGAS
	public Integer getId() {
		return id;
	}
	
	public void setId(Integer id) {
		this.id = id;
	}
	
	public Date getData() {
		return data;
	}

	public void setData(Date data) {
		this.data = data;
	}

	public Cliente getCliente() {
		return cliente;
	}

	public void setCliente(Cliente cliente) {
		this.cliente = cliente;
	}
	
}
