feat(dal, templateMatcher): UnitFilterService теперь возвращает модель Dto а не только Id

This commit is contained in:
Mikhail Kuznetsov
2026-01-21 18:25:09 +10:00
parent eb5bed5614
commit 555b946daa
15 changed files with 1105 additions and 968 deletions

View File

@@ -3,17 +3,14 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using PARR.DAL.Context;
using PARR.DAL.DomainServices.Implementations;
using PARR.DAL.DomainServices.UnitFilterService;
// Предположим, что у вас есть реализации IJobService и IUnitService
// Если нет, можно создать моки, но лучше использовать реальные, если они просты
using PARR.DAL.Services.Implementations.Job; // Пример: JobService
using PARR.DAL.Services.Implementations.Unit; // Пример: UnitService
using PARR.DAL.Services.Interfaces.Job;
using PARR.DAL.Services.Interfaces.Unit;
using System;
using System.Linq;
using System.Threading.Tasks;
using Xunit;
namespace PARR.DAL.IntegrationTests.Integration
{