public TripAddingHandler(ITouristerApp app, string code, int year, int month, int day)
 {
     _app   = app;
     _code  = code;
     _year  = year;
     _month = month;
     _day   = day;
 }
 public TrailPointHandler(ITouristerApp app)
 {
     _app = app;
 }
 public TrailByCodeHandler(ITouristerApp app, string trailCode)
 {
     _app       = app;
     _trailCode = trailCode;
 }
Beispiel #4
0
 public TrailPointAddingHandler(ITouristerApp app, string code, string name)
 {
     _app  = app;
     _code = code;
     _name = name;
 }
Beispiel #5
0
 public SaveHandler(ITouristerApp app)
 {
     _app = app;
 }
Beispiel #6
0
 public TripHandler(ITouristerApp app)
 {
     _app = app;
 }
Beispiel #7
0
 public TripParser(ITouristerApp app, string[] words)
 {
     _app   = app;
     _words = words;
 }
 public TrailPointRemovingHandler(ITouristerApp app, string code)
 {
     _app  = app;
     _code = code;
 }
Beispiel #9
0
 public InputParser(ITouristerApp app, string rawInput)
 {
     _app      = app;
     _rawInput = rawInput;
 }