Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.domain.dao.impl;

/**
 * @author Jorge Machado
 * @date 28/Fev/2008
 * @time 2:51:06
 * @see pt.estgp.estgweb.domain.dao.impl
 */

public class RecordEventOrganizationDaoImpl extends RecordEventOrganizationDao
{
    private RecordEventOrganizationDaoImpl()
    {
    }

    public static RecordEventOrganizationDaoImpl getInstance()
    {
        if (myInstance == null)
            myInstance = new RecordEventOrganizationDaoImpl();
        return (RecordEventOrganizationDaoImpl) myInstance;
    }

}