b3caeaaf8b
x errore naming ref esterna LocationID...
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated from a template.
|
|
//
|
|
// Manual changes to this file may cause unexpected behavior in your application.
|
|
// Manual changes to this file will be overwritten if the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace StockManMVC.Models
|
|
{
|
|
using System;
|
|
using System.Data.Entity;
|
|
using System.Data.Entity.Infrastructure;
|
|
|
|
public partial class StockManEntities : DbContext
|
|
{
|
|
public StockManEntities()
|
|
: base("name=StockManEntities")
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
|
{
|
|
throw new UnintentionalCodeFirstException();
|
|
}
|
|
|
|
public virtual DbSet<Location> Location { get; set; }
|
|
public virtual DbSet<LocType> LocType { get; set; }
|
|
public virtual DbSet<MovType> MovType { get; set; }
|
|
public virtual DbSet<Items> Items { get; set; }
|
|
public virtual DbSet<Stock> Stock { get; set; }
|
|
public virtual DbSet<StockMov> StockMov { get; set; }
|
|
}
|
|
}
|