临时提交2

This commit is contained in:
2025-07-21 18:49:49 +08:00
parent 29a2d44319
commit 525c681b6c
57 changed files with 628 additions and 558 deletions

View File

@@ -13,11 +13,11 @@ using DMS.Infrastructure.Repositories;
namespace DMS.Infrastructure.Services
{
public class VarDataService : BaseService<Variable, DbVariable, VarDataRepository>
public class VarDataService : BaseService<Variable, DbVariable, VariableRepository>
{
private readonly IMapper _mapper;
public VarDataService(IMapper mapper, VarDataRepository repository) : base(mapper, repository)
public VarDataService(IMapper mapper, VariableRepository repository) : base(mapper, repository)
{
_mapper = mapper;
}