16 lines
477 B
C#
16 lines
477 B
C#
|
|
using System;
|
|||
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using Microsoft.EntityFrameworkCore.InMemory;
|
|||
|
|
using WD7UVN_HFT_2023241.Models;
|
|||
|
|
|
|||
|
|
namespace WD7UVN_HFT_2023241.Repository
|
|||
|
|
{
|
|||
|
|
public class CompanyDbContext : DbContext
|
|||
|
|
{
|
|||
|
|
public DbSet<Customer> Customers { get; set; }
|
|||
|
|
public DbSet<Employee> Employees { get; set; }
|
|||
|
|
public DbSet<MaintainerTeam> Maintainers { get; set; }
|
|||
|
|
public DbSet<Service> Services { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|