package com.dacrt.SBIABackend.dto.responseDto;

import javax.validation.constraints.NotNull;

import com.dacrt.SBIABackend.dto.StateDto;
import com.dacrt.SBIABackend.dto.StatusDto;
import com.dacrt.SBIABackend.dto.TypeUnitDto;

public class VicepresidenciaResponseDto {
	
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	private StateDto status;
	
	@NotNull
	private String ref;
	
	@NotNull
	private int units;
	
	private TypeUnitDto type;
	
	@NotNull
	private String dsc;

	public VicepresidenciaResponseDto(@NotNull Integer id, @NotNull String name, StateDto status, @NotNull String ref,int units,
			TypeUnitDto type, @NotNull String dsc) {
		super();
		this.id = id;
		this.name = name;
		this.status = status;
		this.ref = ref;
		this.units = units;
		this.type = type;
		this.dsc = dsc;
	}

	public VicepresidenciaResponseDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public StateDto getStatus() {
		return status;
	}

	public void setStatus(StateDto status) {
		this.status = status;
	}

	public String getRef() {
		return ref;
	}

	public void setRef(String ref) {
		this.ref = ref;
	}

	public TypeUnitDto getType() {
		return type;
	}

	public void setType(TypeUnitDto type) {
		this.type = type;
	}

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}

	public int getUnits() {
		return units;
	}

	public void setUnits(int units) {
		this.units = units;
	}

}
