Files
DMS/DMS.Infrastructure/Services/VarTableService.cs
2025-07-21 18:49:49 +08:00

13 lines
377 B
C#

using AutoMapper;
using DMS.Core.Models;
using DMS.Infrastructure.Entities;
using DMS.Infrastructure.Repositories;
namespace DMS.Infrastructure.Services;
public class VarTableService : BaseService<VariableTable, DbVariableTable, VariableTableRepository>
{
public VarTableService(IMapper mapper, VariableTableRepository repository) : base(mapper, repository)
{
}
}