Files
DMS/DMS.Infrastructure/Services/VariableTableService.cs
2025-07-21 22:02:42 +08:00

13 lines
346 B
C#

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