Exemplo n.º 1
0
        ///////////////////////////////////////////loadDataIntoCombo///////////////////////////////////////////
        //Koen
        public void insertDivisionIntoComboBox()
        {
            var divisions = _dataservice.getAllDivisions();

            Divisions.Clear();
            foreach (var division in divisions)
            {
                Divisions.Add(division);
            }
        }
Exemplo n.º 2
0
 protected override void OnRemoving()
 {
     base.OnRemoving();
     try
     {
         Divisions.Clear(); //foreach thing in Divisions en.Remove();
     }
     catch (Exception ex)
     {
         throw new DocException("Failed to delete Client in Divisions delete", ex);
     }
     try
     {
         Projects.Clear(); //foreach thing in Projects en.Remove();
     }
     catch (Exception ex)
     {
         throw new DocException("Failed to delete Client in Projects delete", ex);
     }
     FlushCache();
 }