You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Service@TransactionalpublicclassAccountService {
@AutowiredprivateNasabahDaonasabahDao;
@AutowiredprivateFamilyDaofamilyDao;
publicvoidsaveNasabah(Nasabahnasabah) {
// TODO Auto-generated method stub//masukin data nasabah sebagai data masternasabahDao.save(nasabah);
//masukkn ke family sebagai detail transaksifor(Familyfamily : nasabah.getFamilies()){
family.setNasabah(nasabah);
familyDao.save(family);
}
}