package com.dacrt.SBIABackend.dto.responseDto;

import java.util.List;

import com.dacrt.SBIABackend.dto.IdValueDto;
import com.dacrt.SBIABackend.dto.SuppliersGetOneDto;

public class EntrySupliersDto {
	
	private SuppliersGetOneDto entry;
	private List<IdValueDto> yesno;
	private List<IdValueDto> types;
	private List<IdValueDto> linea;
	
	public EntrySupliersDto(SuppliersGetOneDto entry, List<IdValueDto> yesno, List<IdValueDto> types,
			List<IdValueDto> linea) {
		super();
		this.entry = entry;
		this.yesno = yesno;
		this.types = types;
		this.linea = linea;
	}

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

	public SuppliersGetOneDto getEntry() {
		return entry;
	}

	public void setEntry(SuppliersGetOneDto entry) {
		this.entry = entry;
	}

	public List<IdValueDto> getYesno() {
		return yesno;
	}

	public void setYesno(List<IdValueDto> yesno) {
		this.yesno = yesno;
	}

	public List<IdValueDto> getTypes() {
		return types;
	}

	public void setTypes(List<IdValueDto> types) {
		this.types = types;
	}

	public List<IdValueDto> getLinea() {
		return linea;
	}

	public void setLinea(List<IdValueDto> linea) {
		this.linea = linea;
	}

}
