Files
Prog4_Beadando/WD7UVN_HFT_2023241.Client/Program.cs

19 lines
370 B
C#
Raw Normal View History

2023-10-03 10:36:32 +02:00
using System;
2023-11-22 09:11:15 +01:00
using WD7UVN_HFT_2023241.Repository;
2023-12-05 15:32:08 +01:00
using System.Net.Http.Headers;
2023-10-03 10:36:32 +02:00
2023-10-03 11:00:40 +02:00
namespace WD7UVN_HFT_2023241.Client
2023-10-03 10:36:32 +02:00
{
class Program
{
static void Main(string[] args)
{
2023-11-22 09:11:15 +01:00
CompanyDbContext dbContext = new CompanyDbContext();
2023-12-05 15:32:08 +01:00
RestService rest = new RestService("127.0.0.1", "api");
2023-10-03 10:36:32 +02:00
}
2023-12-05 15:32:08 +01:00
2023-10-03 10:36:32 +02:00
}
}