2025-07-20 23:28:45 +08:00
|
|
|
using AutoMapper;
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
using DMS.Infrastructure.Entities;
|
|
|
|
|
using DMS.Infrastructure.Repositories;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Infrastructure.Services;
|
|
|
|
|
|
2025-07-21 18:49:49 +08:00
|
|
|
public class VarTableService : BaseService<VariableTable, DbVariableTable, VariableTableRepository>
|
2025-07-20 23:28:45 +08:00
|
|
|
{
|
2025-07-21 18:49:49 +08:00
|
|
|
public VarTableService(IMapper mapper, VariableTableRepository repository) : base(mapper, repository)
|
2025-07-20 23:28:45 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|