public bool Invoke()
        {
            bool complete = false;

            try
            {
                ProductCategorySelectData productcategorydata = new ProductCategorySelectData();
                ResultSet = productcategorydata.Get();

                complete = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(complete);
        }
Exemple #2
0
        public void Invoke()
        {
            ProductCategorySelectData productcategorydata = new ProductCategorySelectData();

            ResultSet = productcategorydata.Get();
        }