From c9de99b9db009d6e98bd2b7cb4ab7e6eb47d912b Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Tue, 24 Sep 2019 22:37:09 +0400 Subject: [PATCH] [backend] fix: Fix build error in DatabaseContext --- Models/DatabaseContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/DatabaseContext.cs b/Models/DatabaseContext.cs index 9c6f851..30cd62e 100644 --- a/Models/DatabaseContext.cs +++ b/Models/DatabaseContext.cs @@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore; namespace InstructorsListApp.Models { public class DatabaseContext : DbContext { - public DatabaseContext(DbContextOptions options) + public DatabaseContext(DbContextOptions options) : base(options) { }