Automated teller machine emulation.
//------------------------------------------------------------------------------
// <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 SergeyDrozdovATM.Data
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class SergeyDrozdovATMDbContext : DbContext
{
public SergeyDrozdovATMDbContext()
: base("name=SergeyDrozdovATMDbContext")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet<Accounts> Accounts { get; set; }
public virtual DbSet<CurrencyRates> CurrencyRates { get; set; }
public virtual DbSet<Users> Users { get; set; }
public virtual DbSet<Currencies> Currencies { get; set; }
}
}