Files
DMS/DMS.Infrastructure/Services/VariableService.cs

25 lines
543 B
C#
Raw Normal View History

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;
2025-07-20 23:28:45 +08:00
using DMS.Infrastructure.Repositories;
namespace DMS.Infrastructure.Services
{
2025-07-21 22:02:42 +08:00
public class VariableService : BaseService<Variable, VariableRepository>
{
2025-07-21 22:02:42 +08:00
public VariableService(VariableRepository repository) : base(repository)
{
}
}
}