extracted a lot of canvas interfaces

This commit is contained in:
2024-05-03 15:22:26 -06:00
parent 353bd6df82
commit 9bae17a2a6
34 changed files with 183 additions and 130 deletions

View File

@@ -7,12 +7,12 @@ using Management.Services.Canvas;
public class QuizEditorContext(
CoursePlanner planner,
CanvasService canvas,
ICanvasService canvas,
MyLogger<QuizEditorContext> logger)
{
public event Action? StateHasChanged;
private CoursePlanner planner { get; } = planner;
private CanvasService canvas { get; } = canvas;
private ICanvasService canvas { get; } = canvas;
private readonly MyLogger<QuizEditorContext> logger = logger;