Skip to content
Snippets Groups Projects
Commit c0207271 authored by Rafi's avatar Rafi
Browse files

Added editShift to the model.

parent 56be7cef
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,10 @@ public class Model {
writer.println("removeShift/"+shiftID);
}
void editShift(int shiftID, String day, int start, int end) {
writer.println("editShift/"+shiftID+"/"+day+"/"+start+"/"+end);
}
void printAllShifts() {
System.out.println(this.shifts);
}
......
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