27 lines
649 B
C#
27 lines
649 B
C#
using AutoMapper;
|
|
using DMS.Core.Helper;
|
|
using DMS.Core.Models;
|
|
using DMS.Infrastructure.Data;
|
|
using DMS.Infrastructure.Entities;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using DMS.Infrastructure.Repositories;
|
|
|
|
namespace DMS.Infrastructure.Services
|
|
{
|
|
public class VarDataService : BaseService<Variable, DbVariable, VariableRepository>
|
|
{
|
|
private readonly IMapper _mapper;
|
|
|
|
public VarDataService(IMapper mapper, VariableRepository repository) : base(mapper, repository)
|
|
{
|
|
_mapper = mapper;
|
|
}
|
|
|
|
}
|
|
}
|