Add Blazor WebApp and rework data handling to utilize Entity Framework
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Core.Entities;
|
||||
|
||||
public class AssignmentRequirement(EventDefinition eventDefinition, Student student, Requirement requirement)
|
||||
{
|
||||
public EventDefinition EventDefinition { get; } = eventDefinition;
|
||||
public Student Student { get; } = student;
|
||||
public Requirement Requirement { get; } = requirement;
|
||||
}
|
||||
Reference in New Issue
Block a user