aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/SkuAssist.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-07-04 11:33:29 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-07-04 11:33:29 +0300
commitdca3481e9a91e1c9d5b86e1508b0a2993088e759 (patch)
tree208550ad4a4e541248a87583552e3beaa0713790 /src/Assistant/SkuAssist.cs
parent10e6a108f974b3e2541ec322f99e60ec5ab7d9f7 (diff)
Remove Store Functions
Diffstat (limited to 'src/Assistant/SkuAssist.cs')
-rw-r--r--src/Assistant/SkuAssist.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/Assistant/SkuAssist.cs b/src/Assistant/SkuAssist.cs
deleted file mode 100644
index 85a084c..0000000
--- a/src/Assistant/SkuAssist.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System.Threading.Tasks;
-
-namespace RehauSku.Assistant
-{
- enum ProductField
- {
- Name,
- Id,
- Price
- }
-
- static class SkuAssist
- {
- public static async Task<IProduct> GetProductAsync(string request)
- {
- var content = await HttpClientUtil.GetContentByRequest(request);
- var document = await ParseUtil.ContentToDocAsync(content);
-
- return ParseUtil.GetProduct(document);
- }
- }
-} \ No newline at end of file