Skip to content

Instantly share code, notes, and snippets.

@sizovs
Created September 16, 2014 11:11
Show Gist options
  • Save sizovs/eeba7eccc13a40bfe425 to your computer and use it in GitHub Desktop.
Save sizovs/eeba7eccc13a40bfe425 to your computer and use it in GitHub Desktop.
@RandomDAO(EntityType.SIMPLE_ENTITY)
@Slave
class DailyQuestionTemplateDAOImpl extends AEntityDAOMySQL<Long, DailyQuestionDTO> implements
DailyQuestionTemplateDAO {
private final DailyQuestionDTORowReader dailyQuestionDTORowReader;
private final DailyQuestionTemplateRowReader dailyQuestionTemplateRowReader;
public DailyQuestionTemplateDAOImpl(IConnectionLookup<Connection> lookup) {
super(lookup);
this.dailyQuestionDTORowReader = new DailyQuestionDTORowReader();
this.dailyQuestionTemplateRowReader = new DailyQuestionTemplateRowReader();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment