feat(data): rename *.Services projects, lift TrackEntity onto BlazorBlocks data layer, regenerate initial Postgres migration

DeepDrftWeb.Services → DeepDrftData; DeepDrftContent.Services → DeepDrftContent.Data.
TrackEntity:BaseEntity, TrackRepository:Repository<>, TrackManager:Manager<>+ITrackService.
Drops DeepDrftModels PagingParameters/PagedResult in favour of Models.Common.* from BlazorBlocks.
InitialCreate migration captures full schema including is_deleted index.
This commit is contained in:
Daniel Harvey
2026-05-18 22:22:09 -04:00
parent 130f1357ec
commit cd700dc758
82 changed files with 511 additions and 600 deletions
+4 -4
View File
@@ -11,8 +11,8 @@ namespace DeepDrftCli.Services;
public class GuiService
{
private readonly ILogger<GuiService> _logger;
private readonly DeepDrftWeb.Services.ITrackService _webTrackService;
private readonly DeepDrftContent.Services.TrackService _contentTrackService;
private readonly DeepDrftData.ITrackService _webTrackService;
private readonly DeepDrftContent.Data.TrackService _contentTrackService;
// GUI Components
private Window? _mainWindow;
@@ -24,8 +24,8 @@ public class GuiService
public GuiService(
ILogger<GuiService> logger,
DeepDrftWeb.Services.ITrackService webTrackService,
DeepDrftContent.Services.TrackService contentTrackService)
DeepDrftData.ITrackService webTrackService,
DeepDrftContent.Data.TrackService contentTrackService)
{
_logger = logger;
_webTrackService = webTrackService;