First commit

This commit is contained in:
HuskyTeufel
2021-09-12 12:50:50 +02:00
parent 418d2b5686
commit 28c290599b
11 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using DaSaSo.Domain.Model;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.EntityFramework
{
public class DaSaSoDbContext : DbContext
{
public DaSaSoDbContext(DbContextOptions options) : base(options)
{
}
public DbSet<Client> Clients { get; set; }
}
}