Find seller by sellerno

This commit is contained in:
Martin Brodbeck 2018-07-20 22:07:42 +02:00
parent 19375a7752
commit 0ad460346c
5 changed files with 53 additions and 9 deletions

View file

@ -13,15 +13,16 @@ class MainWindow : public QMainWindow
{
Q_OBJECT
public:
public:
MainWindow();
Marketplace* getMarketplace() {return marketplace_.get();}
Marketplace* getMarketplace() { return marketplace_.get(); }
private:
void on_actionEditSeller_triggered();
private:
void on_actionEditSeller_triggered();
void on_sellerNoEdit_checkSellerNo();
Ui::MainWindow ui_;
std::unique_ptr<Marketplace> marketplace_;
Ui::MainWindow ui_;
std::unique_ptr<Marketplace> marketplace_;
};
#endif