-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDispatcher.java
More file actions
50 lines (30 loc) · 908 Bytes
/
Copy pathDispatcher.java
File metadata and controls
50 lines (30 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.Rassokhin_OOP;
import java.util.ArrayList;
public class Dispatcher extends Worker{
ArrayList<SupportBid> currentSupportBids = new ArrayList<SupportBid>();
ArrayList<Bid> currentBids = new ArrayList<Bid>();
ArrayList<SupportBid>closedSupportBids = new ArrayList<SupportBid>();
ArrayList<Bid> bidsInProcess = new ArrayList<Bid>();
Dispatcher(int iD, int pointNum, String phoneNum, String workerName, String workerEmail)
{
super(iD, pointNum, phoneNum, workerName, workerEmail);
}
void addBid(Bid bid)
{
}
void deleteBid(int bidIndex)
{
}
void addSupportBid(int newSupportBidTrackCode)
{
}
void deleteSupportBid(int supportBidIndex)
{
}
void MakeRoute(int bidIndex)
{
}
void answerToSupportBid(int supportBidIndex)
{
}
}