Consulente aziendale: come trovare business consultants
Come Trovare un Consulente Aziendale per il Tuo Business
Consigli per Trovare un Consulente Aziendale per la Tua Attività.
Scopri come trovare il consulente aziendale perfetto per il tuo business. In questo articolo, esploreremo strategie efficaci per identificare professionisti che possano supportarti nella crescita e nello sviluppo della tua azienda, migliorando la tua competitività sul mercato.
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright (C) 2018 Tmejs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.pjkurs.vaadin.ui.containers.client;
import com.pjkurs.domain.AppUsers;
import com.pjkurs.domain.Course;
import com.pjkurs.vaadin.NavigatorUI;
import com.pjkurs.vaadin.views.system.MyUIModel;
import com.pjkurs.vaadin.views.system.MyView;
import com.vaadin.ui.Panel;
import com.vaadin.ui.VerticalLayout;
/**
*
* @author Tmejs
*/
public class ClientPanel extends Panel {
public ClientPanel(MyView view) {
super();
this.setWidth("100%");
this.setHeight("100%");
VerticalLayout mainLayout = new VerticalLayout();
this.addStyleName("client-panel");
mainLayout.addStyleName("client-panel-main-layout");
mainLayout.setSizeFull();
mainLayout.addComponent(NavigatorUI.getLogoutButton());
mainLayout.addComponent(NavigatorUI.getUserPanel());
if(AppUsers.isLoggedUserAdmin()){
mainLayout.addComponent(NavigatorUI.getSystemPanel());
mainLayout.addComponent(NavigatorUI.getSystemContent());
}
else{
mainLayout.addComponent(NavigatorUI.getClientPanel());
mainLayout.addComponent(NavigatorUI.getClientContent());
}
mainLayout.addComponent(view);
this.setContent(mainLayout);
}
}