Beispiel #1
0
        private void refreshGrid()
        {
            ObservableCollection <CoeficienteObject> list = new ObservableCollection <CoeficienteObject>();
            CoeficienteObject cob;

            foreach (coeficientes_pago cp in DBManager.CoeficientesRepo.List)
            {
                cob           = new CoeficienteObject();
                cob.id        = cp.id;
                cob.tipo      = cp.tipos_pago.nombre;
                cob.categoria = cp.tipo_categorias.nombre;
                cob.value     = cp.valor;
                list.Add(cob);
            }

            _dataGrid.ItemsSource = list;
        }
Beispiel #2
0
 public void add(CoeficienteObject co)
 {
     _lista.Add(co);
 }