blob: ab6cedf990d4ada2583fdab5abba7f6d790a536c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using ExcelDna.Integration;
using System.Net.Http;
using System.Threading.Tasks;
namespace Rehau.Sku.Assist
{
public class Functions
{
private static HttpClient httpClient = new HttpClient();
[ExcelFunction]
public static async Task<string> RAUNAME(string request)
{
throw new NotImplementedException();
}
}
}
|