Har bara kommenterat lite

This commit is contained in:
2018-11-14 23:20:47 +01:00
parent 7b3bc55346
commit 7c1d024e3a

View File

@ -1,11 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
using static System.Console;
//Kommenterar lite för att testa git-remote
namespace DbFirst
{
public enum Level : byte
@ -21,8 +16,10 @@ namespace DbFirst
static void Main(string[] args)
{
var course = new Course();
course.Level = CourseLevel.Beginner;
var course = new Course
{
Level = CourseLevel.Beginner
};
var dbContext = new PlutoDbContext();