using System; using System.Collections.Generic; using System.Text; using Microsoft.EntityFrameworkCore; namespace PoweredSoft.Test.Mock { public class MockContext : DbContext { public virtual DbSet Customers { get; set; } public virtual DbSet Items { get; set; } public virtual DbSet Orders { get; set; } public virtual DbSet OrderItems { get; set; } public virtual DbSet Tickets { get; set; } public MockContext() { } public MockContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { } } }