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 System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Admin.Core.Service { public class BoxLastShotRecordServices : BaseServices, IBoxLastShotRecordServices { private readonly IBaseRepository _dal; public BoxLastShotRecordServices(IBaseRepository dal) { this._dal = dal; base.BaseDal = dal; } } }