14 lines
		
	
	
		
			No EOL
		
	
	
		
			378 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			378 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.EntityFrameworkCore;
 | |
| using turf_tasker.Models;
 | |
| 
 | |
| namespace turf_tasker.Data;
 | |
| 
 | |
| public class ApplicationDbContext : DbContext
 | |
| {
 | |
|     public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
 | |
|         : base(options) { }
 | |
|     
 | |
|     public DbSet<LawnCareEvent> LawnCareEvents { get; set; }
 | |
|     
 | |
|     public DbSet<LawnCareTip> LawnCareTips { get; set; }
 | |
| } | 
