public MainWindow()
        {
            InitializeComponent();
            cmv = new CloudManagerViewModel();
            this.Loaded += cmv.MainWindow_Loaded;
            this.DataContext = cmv;        //model-class
            this.setElements();

            
            //WCFConnectionWorker wcw = new WCFConnectionWorker(iu.ReceivedListLocal); //funktion von intelligentenupload einhängen und in der funktion mit stringarray filelist machen und datenbankeintrag macchen
            //wcw.StartService();
            //wcw.RequestFileList();
        }
 public IntelligentUpload(CloudManagerViewModel model)
 {
     this.ViewModel = model;
     this.dbEntry = new DatabaseEntry();
 }