Created
February 22, 2015 11:44
-
-
Save johnmmoss/82a7a8fc9988e10ea693 to your computer and use it in GitHub Desktop.
Timesheets App Sample Context
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class TimesheetsContext : DbContext | |
| { | |
| public DbSet<Employee> Employees { get; set; } | |
| public DbSet<Department> Departments { get; set; } | |
| public DbSet<TimeCode> TimeCodes { get; set; } | |
| public DbSet<Timesheet> Timesheets { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment