public Bag(SuspiciousBagtype suspicious, float weight, Destination destination, string terminalAndGate)
 {
     this._suspicious      = suspicious;
     this._weight          = weight;
     this._id              = ++_idToGive;
     this._destination     = destination;
     this._terminalAndGate = terminalAndGate;
 }
 public Bag(SuspiciousBagtype suspicious, float weight)
 {
     _suspicious = suspicious;
     Weight      = weight;
     Id          = ++_idToGive;
 }