summaryrefslogtreecommitdiff
path: root/Models
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-12 21:20:00 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-12 21:25:10 -0600
commit46965f637d3b329038a7ef84fbefac3cad92f465 (patch)
treedff667eee9cc212ab106559bd7cdbfa069fd459a /Models
parent8efbe4b57c42cddc48ea0cca413fc3f443184b64 (diff)
Commit inicial
Diffstat (limited to 'Models')
-rw-r--r--Models/ApplicationDbContext.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Models/ApplicationDbContext.cs b/Models/ApplicationDbContext.cs
new file mode 100644
index 0000000..902237d
--- /dev/null
+++ b/Models/ApplicationDbContext.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
+
+namespace BackendPIA.Models {
+ public class ApplicationDbContext : IdentityDbContext {
+ public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) {
+ }
+ }
+}