Esempio n. 1
0
        public AccantonamentoTFR AddAccantonamentoTFR()
        {
            AccantonamentoTFR a = new AccantonamentoTFR();

            _statoPatrimoniale.AccantonamentiTFR.Add(a);
            RaiseChangeEvent();
            return(a);
        }
Esempio n. 2
0
        public void RemoveAccantonamentoTFR()
        {
            AccantonamentoTFR a = _view.GridAccantonamentoTFR.CurrentObject();

            if (a != null)
            {
                _statoPatrimonialeService.RemoveAccantonamentoTFR(a);
                _view.GridAccantonamentoTFR.BoundList.Remove(a);
            }
        }
Esempio n. 3
0
        public void AddAccantonamentoTFR()
        {
            AccantonamentoTFR a = _statoPatrimonialeService.AddAccantonamentoTFR();

            _view.GridAccantonamentoTFR.BoundList.Add(a);
        }
Esempio n. 4
0
 public void RemoveAccantonamentoTFR(AccantonamentoTFR accantonamentoTFR)
 {
     _statoPatrimoniale.AccantonamentiTFR.Remove(accantonamentoTFR);
     RaiseChangeEvent();
 }