/*
 * __NAME__.java
 *
 * Created on __DATE__, __TIME__
 *
 * Hibernate Data Access Object Interface. This class provides the interface for a Hibernate Entity class.
 */

package hibernateapp.dao;

import hibernateapp.hbvo.*;

/**
 *
 * @author karan
 */
public interface __NAME__ {
    
    public void storeData(HBVOClass hbvoClassObject) throws InfrastructureException;
    
}
