public void start(Stage primaryStage) {
System.out.println("Launching LighView " + VERSION);
DashboardPresenter dashboardPresenter = new DashboardPresenter();
InjectionProvider.registerExistingAndInject(dashboardPresenter);
dashboardPresenter.initialize(null, null);
new DashboardView(primaryStage, dashboardPresenter);
}