2025-07-19 14:36:34 +08:00
|
|
|
using AutoMapper;
|
|
|
|
|
using DMS.Core.Helper;
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
using DMS.Infrastructure.Data;
|
|
|
|
|
using DMS.Infrastructure.Entities;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2025-07-20 23:28:45 +08:00
|
|
|
using DMS.Infrastructure.Repositories;
|
2025-07-19 14:36:34 +08:00
|
|
|
|
|
|
|
|
namespace DMS.Infrastructure.Services
|
|
|
|
|
{
|
2025-07-21 18:49:49 +08:00
|
|
|
public class VarDataService : BaseService<Variable, DbVariable, VariableRepository>
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
|
|
|
|
private readonly IMapper _mapper;
|
|
|
|
|
|
2025-07-21 18:49:49 +08:00
|
|
|
public VarDataService(IMapper mapper, VariableRepository repository) : base(mapper, repository)
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
|
|
|
|
_mapper = mapper;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|