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.
26 lines
775 B
C#
26 lines
775 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 Microsoft.IdentityModel.Logging;
|
|
using NPOI.SS.Formula.Functions;
|
|
using NPOI.XSSF.UserModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Service
|
|
{
|
|
public class BoxFoamDataRealTimeHistoryServices : BaseServices<BoxFoamDataRealTimeHistory>, IBoxFoamDataRealTimeHistoryServices
|
|
{
|
|
private readonly IBaseRepository<BoxFoamDataRealTimeHistory> _dal;
|
|
public BoxFoamDataRealTimeHistoryServices(IBaseRepository<BoxFoamDataRealTimeHistory> dal)
|
|
{
|
|
this._dal = dal;
|
|
}
|
|
|
|
}
|
|
} |