public LocationInfoPresenter(ILocationInfoView view, JobModel jobModel)
 {
     this._view = view;
     this._jobModel = jobModel;
 }
 public LocationInfoPresenter(ILocationInfoView view)
 {
     this._view = view;
     this._model = new LocationModel();
     this._jobModel = new JobModel();
 }