Flesh out domain and start student commands

This commit is contained in:
Giovani
2019-04-24 17:50:37 +00:00
parent f603e94b5d
commit 17a15766ab
18 changed files with 648 additions and 197 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BrightGlimmer.Domain
{
[Table("AssignedCourses")]
public class AssignedCourse : Entity
{
public decimal Grade { get; set; }
public bool IsActive { get; set; }
public string Term { get; set; }
public Student Student { get; set; }
public Course Course { get; set; }
}
}