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 CourseDaoImpl extends CourseDao
{
    public static CourseDaoImpl getInstance()
    {
        if (myInstance == null)
            myInstance = new CourseDaoImpl();
        return (CourseDaoImpl) myInstance;
    }

}