You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
751 B
C#
25 lines
751 B
C#
using Admin.Core.IRepository;
|
|
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using Admin.Core.Model.Model_New;
|
|
using log4net;
|
|
using Microsoft.AspNetCore.Razor.TagHelpers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Service
|
|
{
|
|
public class PerfusionAlarmServices : BaseServices<Perfusion_Alarm>, IPerfusionAlarmServices
|
|
{
|
|
private static readonly log4net.ILog logHelper = LogManager.GetLogger(typeof(PerfusionRecordServices));
|
|
private readonly IBaseRepository<Perfusion_Alarm> _dal;
|
|
public PerfusionAlarmServices(IBaseRepository<Perfusion_Alarm> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
|
|
}
|
|
} |