public AccantonamentoTFR AddAccantonamentoTFR() { AccantonamentoTFR a = new AccantonamentoTFR(); _statoPatrimoniale.AccantonamentiTFR.Add(a); RaiseChangeEvent(); return(a); }
public void RemoveAccantonamentoTFR() { AccantonamentoTFR a = _view.GridAccantonamentoTFR.CurrentObject(); if (a != null) { _statoPatrimonialeService.RemoveAccantonamentoTFR(a); _view.GridAccantonamentoTFR.BoundList.Remove(a); } }
public void AddAccantonamentoTFR() { AccantonamentoTFR a = _statoPatrimonialeService.AddAccantonamentoTFR(); _view.GridAccantonamentoTFR.BoundList.Add(a); }
public void RemoveAccantonamentoTFR(AccantonamentoTFR accantonamentoTFR) { _statoPatrimoniale.AccantonamentiTFR.Remove(accantonamentoTFR); RaiseChangeEvent(); }