package com.dacrt.SBIABackend.dto;

import java.util.List;

public class EntryApplicationDto {
	private EntryApplicationDto2 entry;
    private List<AppTypeDto> apptype;
    private List<AppyesnoDto> appyesno;
    private List<PeriodsResponseDto> periods;
    private List<TesttypesDto> testtypes;
    private List<TestresultsDto> testresults;
	public EntryApplicationDto() {
		super();
	}
	public EntryApplicationDto(EntryApplicationDto2 entry, List<AppTypeDto> apptype, List<AppyesnoDto> appyesno,
			List<PeriodsResponseDto> periods, List<TesttypesDto> testtypes, List<TestresultsDto> testresults) {
		super();
		this.entry = entry;
		this.apptype = apptype;
		this.appyesno = appyesno;
		this.periods = periods;
		this.testtypes = testtypes;
		this.testresults = testresults;
	}
	public EntryApplicationDto2 getEntry() {
		return entry;
	}
	public void setEntry(EntryApplicationDto2 entry) {
		this.entry = entry;
	}
	public List<AppTypeDto> getApptype() {
		return apptype;
	}
	public void setApptype(List<AppTypeDto> apptype) {
		this.apptype = apptype;
	}
	public List<AppyesnoDto> getAppyesno() {
		return appyesno;
	}
	public void setAppyesno(List<AppyesnoDto> appyesno) {
		this.appyesno = appyesno;
	}
	public List<PeriodsResponseDto> getPeriods() {
		return periods;
	}
	public void setPeriods(List<PeriodsResponseDto> periods) {
		this.periods = periods;
	}
	public List<TesttypesDto> getTesttypes() {
		return testtypes;
	}
	public void setTesttypes(List<TesttypesDto> testtypes) {
		this.testtypes = testtypes;
	}
	public List<TestresultsDto> getTestresults() {
		return testresults;
	}
	public void setTestresults(List<TestresultsDto> testresults) {
		this.testresults = testresults;
	}
	
    
}
