Removed unneeded dependency

This commit is contained in:
TypoMustakes
2023-12-06 15:56:53 +01:00
parent f2145fbc26
commit b1e00c6e3c

View File

@@ -1,6 +1,5 @@
using System;
using WD7UVN_HFT_2023241.Repository;
using System.Net.Http.Headers;
using WD7UVN_HFT_2023241.Models;
using
namespace WD7UVN_HFT_2023241.Client
{
@@ -8,8 +7,10 @@ namespace WD7UVN_HFT_2023241.Client
{
static void Main(string[] args)
{
CompanyDbContext dbContext = new CompanyDbContext();
RestService rest = new RestService();
List<Employee> list = rest.Get<Employee>("/api");
}
}
}