source: db_tsh/Models/DbContext.cs

main
Last change on this file was 705d6f5, checked in by ardit <ardit@…>, 2 days ago

Commiting all files of project - 20250224

  • Property mode set to 100644
File size: 423 bytes
Line 
1using Microsoft.EntityFrameworkCore;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Threading.Tasks;
6
7namespace db_tsh.Models
8{
9 public class TrustShield : DbContext
10 {
11 public TrustShield(DbContextOptions<TrustShield> options) : base(options)
12 {
13 }
14
15 // DbSet properties for your entities
16 public DbSet<Customer> Customer { get; set; }
17
18 }
19}
Note: See TracBrowser for help on using the repository browser.