Files
Prog4_Beadando/WD7UVN_HFT_2023241.Client/Program.cs
2023-12-06 15:57:22 +01:00

17 lines
304 B
C#

using WD7UVN_HFT_2023241.Models;
using
namespace WD7UVN_HFT_2023241.Client
{
class Program
{
static void Main(string[] args)
{
RestService rest = new RestService();
List<Employee> list = rest.Get<Employee>("/api");
}
}
}