Skip to content
Snippets Groups Projects
Commit db893721 authored by Rafi Zereselasie (raz070)'s avatar Rafi Zereselasie (raz070)
Browse files

Now includes the positions class

parent 4c5ac9b6
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ public class DataBaseQuery {
protected Schedule schedule;
protected TimeOff timeOff;
protected Availability availability;
protected Positions positions;
private Connection dbConnection;
/*
......@@ -29,6 +30,7 @@ public class DataBaseQuery {
this.schedule = new Schedule(dbConnection);
this.timeOff = new TimeOff(dbConnection);
this.availability = new Availability(dbConnection);
this.positions = new Positions(dbConnection);
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment