2021-11-29 15:50:24 +03:00
|
|
|
|
using System;
|
|
|
|
|
using ExcelDna.Integration;
|
2021-11-14 12:27:49 +03:00
|
|
|
|
using System.Net.Http;
|
2021-11-29 15:50:24 +03:00
|
|
|
|
using System.Threading.Tasks;
|
2021-11-11 16:33:40 +03:00
|
|
|
|
|
|
|
|
|
namespace Rehau.Sku.Assist
|
|
|
|
|
{
|
2021-11-29 15:50:24 +03:00
|
|
|
|
public class Functions
|
2021-11-11 16:33:40 +03:00
|
|
|
|
{
|
2021-11-29 15:50:24 +03:00
|
|
|
|
private static HttpClient httpClient = new HttpClient();
|
2021-11-11 16:33:40 +03:00
|
|
|
|
|
2021-11-29 11:26:25 +03:00
|
|
|
|
[ExcelFunction]
|
2021-11-29 15:50:24 +03:00
|
|
|
|
public static async Task<string> RAUNAME(string request)
|
2021-11-11 16:33:40 +03:00
|
|
|
|
{
|
2021-11-29 15:50:24 +03:00
|
|
|
|
throw new NotImplementedException();
|
2021-11-11 16:33:40 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|