Fix 9 design majors: ITrackService interface, IsDescending, ArrayPool base, CliUtils, sort sentinel cleanup, content controller via TrackService, Skip property

This commit is contained in:
Daniel Harvey
2026-05-17 16:10:56 -04:00
parent fc5b8de81a
commit 4c9bf0ca8d
15 changed files with 97 additions and 71 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ namespace DeepDrftWeb.Controllers;
[Route("api/[controller]")]
public class TrackController : ControllerBase
{
private readonly TrackService _trackService;
private readonly ITrackService _trackService;
public TrackController(TrackService trackService)
public TrackController(ITrackService trackService)
{
_trackService = trackService;
}