RhSolutions-AddIn/Functions.cs

18 lines
392 B
C#
Raw Normal View History

2021-11-29 15:50:24 +03:00
using System;
using ExcelDna.Integration;
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
[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
}
}
}