修订了第二个版本
This commit is contained in:
13
DMS.Infrastructure/Services/VarTableService.cs
Normal file
13
DMS.Infrastructure/Services/VarTableService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user