Files
DaSaSo/DaSaSo.ConsoleApp/Program.cs
2021-09-15 20:06:55 +02:00

17 lines
468 B
C#

// See https://aka.ms/new-console-template for more information
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Services;
using DaSaSo.EntityFramework;
using DaSaSo.EntityFramework.Services;
using System.Diagnostics;
IDataService<Client> clientService = new GenericDataService<Client>(new DaSaSoDbContextFactory(""));
clientService.Create(new Client()
{
Firstname = "Cynthia",
LastName = "Schreuder",
Country = "Tarmstedt",
Postcode = "25445",
});