}
return new ForwardResolution("/WEB-INF/jsp/repartizareAmplasamente.jsp");
}
public Resolution stergeProiect(){
int idProiect = ((Proiect) getContext().getRequest().getSession().getAttribute("proiectInLucru")).getIdProiect();
IProiectDao proiectDao=new ProiectDao();
IAmplasamentDao amplasamentDao=new AmplasamentDao();
IGeologBeneficiarDao geologBeneficiarDao=new GeologBeneficiarDao();
int idGeologSef=proiectDao.getProiectByID(idProiect).getIdGeolog();
int idBeneficiar=proiectDao.getProiectByID(idProiect).getIdBeneficiar();
List<Amplasament> amplasamente=amplasamentDao.getAmplasamenteByProiectId(idProiect);
Iterator it=amplasamente.iterator();
while(it.hasNext()){
Amplasament amplasament=(Amplasament)it.next();
geologBeneficiarDao.delete(amplasament.getIdGeolog(), idBeneficiar);
amplasamentDao.delete(amplasament.getIdAmplasament());
}
geologBeneficiarDao.delete(idGeologSef, idBeneficiar);
proiectDao.delete(idProiect);
return new ForwardResolution("/WEB-INF/jsp/geologLogat.jsp");
}