public fmSearch() { InitializeComponent(); postInit(); _customerSearchpresenter = new CustomerSearchPresenter(this); _tourSearchpresenter = new TourSearchPresenter(this); _tourGroupSearchPresenter = new TourGroupSearchPresenter(this); _bus = new TourCategoryBUS(); _entry = _bus.getEntries(); _destinationBus = new DestinationBUS(); _detinations = _destinationBus.getEntries(); _tourPriceBus = new TourPriceBUS(); _tourPrices = _tourPriceBus.getEntries(); _minPrice = _tourPriceBus.getMinPrice(); _maxPrice = _tourPriceBus.getMaxPrice(); _transportBUS = new TransportBUS(); _transports = _transportBUS.getEntries(); _tourGroupBus = new TourGroupBUS(); _minDepartDate = _tourGroupBus.getMinDepartDate(); _maxReturnDate = _tourGroupBus.getMaxReturnDate(); tourGroupSearchEngine = new SearchEngine <TourGroup>(); }
public fmSearch() { InitializeComponent(); postInit(); _customerSearchpresenter = new CustomerSearchPresenter(this); _tourSearchpresenter = new TourSearchPresenter(this); _bus = new TourCategoryBUS(); _entry = _bus.getEntries(); _destinationBus = new DestinationBUS(); _detinations = _destinationBus.getEntries(); _tourPriceBus = new TourPriceBUS(); _tourPrices = _tourPriceBus.getEntries(); _minPrice = _tourPriceBus.getMinPrice(); _maxPrice = _tourPriceBus.getMaxPrice(); _transportPresenter = new TransportPresenter(this); _tourGroupSearchPresenter = new TourGroupSearchPresenter(this); }