public void Invoke()
        {
            ProductSelectSearchData productdatasearch = new ProductSelectSearchData();

            productdatasearch.SearchCriteria = this.SearchCriteria;
            ResultSet = productdatasearch.Get();
        }
Пример #2
0
        public bool Invoke()
        {
            bool complete = false;

            ProductSelectSearchData productdatasearch = new ProductSelectSearchData();

            productdatasearch.SearchCriteria = this.SearchCriteria;
            ResultSet = productdatasearch.Get();
            complete  = true;

            return(complete);
        }