コード例 #1
0
        public ProductsSearchResultDTO GetProductWithString(string SearchString)
        {
            ProductsSearchResultDTO productsSearchResultDTO = new ProductsSearchResultDTO();

            try
            {
                productsSearchResultDTO = productDatabaseContext.GetProductsWithString(SearchString);
                return(productsSearchResultDTO);
            }
            catch (Exception ex)
            {
                throw new Exception("Unknown Error");
            }
        }