Skip to content
Permalink
de6ec4c135
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (18 sloc) 525 Bytes
using groupH_M32COM.Angular.Models;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace groupH_M32COM.Angular.DatabaseClasses
{
public class RCBoatDBContext : DbContext
{
public RCBoatDBContext(DbContextOptions<RCBoatDBContext> options)
: base(options)
{
}
public DbSet<Boat> Boats { get; set; }
public DbSet<Boat_Event_Detail> BoatEventDetails { get; set; }
}
}