mirror of https://github.com/tasks/tasks
Added ABTestEventDao
parent
1f46fa34c6
commit
f08d3c2890
@ -0,0 +1,19 @@
|
|||||||
|
package com.todoroo.astrid.dao;
|
||||||
|
|
||||||
|
import com.todoroo.andlib.data.DatabaseDao;
|
||||||
|
import com.todoroo.andlib.service.Autowired;
|
||||||
|
import com.todoroo.andlib.service.DependencyInjectionService;
|
||||||
|
import com.todoroo.astrid.data.ABTestEvent;
|
||||||
|
|
||||||
|
public class ABTestEventDao extends DatabaseDao<ABTestEvent> {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private Database database;
|
||||||
|
|
||||||
|
public ABTestEventDao() {
|
||||||
|
super(ABTestEvent.class);
|
||||||
|
DependencyInjectionService.getInstance().inject(this);
|
||||||
|
setDatabase(database);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue