package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class EntryServicesOffers2 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private StatusDto2 status;
	
	@NotNull
	private boolean offer_full;
	
	private Weekdays2Dto weekdays;

	@NotNull
	private List<ScheduleDto>  schedule;

	public EntryServicesOffers2() {
		super();
	}

	public EntryServicesOffers2(@NotNull Integer id, @NotNull String name, @NotNull StatusDto2 status,
			@NotNull boolean offer_full, Weekdays2Dto weekdays, @NotNull List<ScheduleDto> schedule) {
		super();
		this.id = id;
		this.name = name;
		this.status = status;
		this.offer_full = offer_full;
		this.weekdays = weekdays;
		this.schedule = schedule;
	}

	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 StatusDto2 getStatus() {
		return status;
	}

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

	public boolean isOffer_full() {
		return offer_full;
	}

	public void setOffer_full(boolean offer_full) {
		this.offer_full = offer_full;
	}

	public Weekdays2Dto getWeekdays() {
		return weekdays;
	}

	public void setWeekdays(Weekdays2Dto weekdays) {
		this.weekdays = weekdays;
	}

	public List<ScheduleDto> getSchedule() {
		return schedule;
	}

	public void setSchedule(List<ScheduleDto> schedule) {
		this.schedule = schedule;
	}

	
	
}
