24 lines
603 B
C#
24 lines
603 B
C#
using AutoMapper;
|
|
using DMS.Core.Enums;
|
|
using DMS.Core.Helper;
|
|
using DMS.Core.Models;
|
|
using DMS.Infrastructure.Data;
|
|
using DMS.Infrastructure.Entities;
|
|
using DMS.Infrastructure.Interfaces;
|
|
using DMS.Infrastructure.Repositories;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DMS.Infrastructure.Services
|
|
{
|
|
public class MqttService:BaseService<MqttServer, DbMqttServer, MqttRepository>
|
|
{
|
|
public MqttService(IMapper mapper, MqttRepository repository) : base(mapper, repository)
|
|
{
|
|
}
|
|
}
|
|
}
|