Files
DMS/DMS.Infrastructure/Services/VarTableService.cs
2025-07-20 23:28:45 +08:00

13 lines
367 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, VarTableRepository>
{
public VarTableService(IMapper mapper, VarTableRepository repository) : base(mapper, repository)
{
}
}