public void InitMVP()
        {
            view = new MockSearchProduct();
            productService = new MockProductService();
            presenter = new SearchProductPresenter(productService);

            presenter.View = view;
        }
        public void InitMVP()
        {
            view           = new MockSearchProduct();
            productService = new MockProductService();
            presenter      = new SearchProductPresenter(productService);

            presenter.View = view;
        }