colors (ctor)
This commit is contained in:
parent
8e658d2bb4
commit
fab5854f8b
31 changed files with 16278 additions and 10579 deletions
|
|
@ -7,6 +7,8 @@ using Microsoft.AspNet.Identity.EntityFramework;
|
|||
using Microsoft.Data.Entity;
|
||||
using System.Web;
|
||||
using System.Threading;
|
||||
using Yavsc.Models.Haircut;
|
||||
using Yavsc.Models.Drawing;
|
||||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
|
|
@ -24,8 +26,8 @@ namespace Yavsc.Models
|
|||
using Messaging;
|
||||
using Access;
|
||||
using Booking.Profiles;
|
||||
using Yavsc.Models.Workflow.Profiles;
|
||||
|
||||
using Workflow.Profiles;
|
||||
using Drawing;
|
||||
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
||||
{
|
||||
protected override void OnModelCreating(ModelBuilder builder)
|
||||
|
|
@ -263,6 +265,10 @@ namespace Yavsc.Models
|
|||
public DbSet<Form> Form { get; set; }
|
||||
|
||||
public DbSet<Ban> Banlist { get ; set; }
|
||||
|
||||
public DbSet<HairTaint> HairTaint { get; set; }
|
||||
|
||||
public DbSet<Color> Color { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue