Files
Prog4_Beadando/WD7UVN_HFT_2023241.Client/Program.cs

14 lines
263 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-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-10-03 10:36:32 +02:00
}
}
}