List<StoreBusinessHour> storeBusinessHours = store.getStoreBusinessHours();
StoreBusinessHourViewBean storeBusinessHourViewBean = null;
if (storeBusinessHours != null && storeBusinessHours.size() > 0) {
storeBusinessHourViewBean = new StoreBusinessHourViewBean();
for (StoreBusinessHour storeBusinessHour : storeBusinessHours) {
OperationHourViewBean operationHourViewBean = new OperationHourViewBean();
operationHourViewBean.setEndHour(storeBusinessHour.getEndHour());
operationHourViewBean.setStartHour(storeBusinessHour.getStartHour());
if (storeBusinessHour.isMonday()) {
storeBusinessHourViewBean.setMonday(operationHourViewBean);
}
if (storeBusinessHour.isTuesday()) {
storeBusinessHourViewBean.setTuesday(operationHourViewBean);