}
public Propose findById(java.lang.Integer id) {
log.debug("getting Propose instance with id: " + id);
try {
Propose instance = (Propose) getHibernateTemplate().get(
"com.tcs.hrr.domain.Propose", id);
return instance;
} catch (RuntimeException re) {
log.error("get failed", re);
throw re;