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<BoxLastShotRecord>, IBoxLastShotRecordServices
    {
        private readonly IBaseRepository<BoxLastShotRecord> _dal;
        public BoxLastShotRecordServices(IBaseRepository<BoxLastShotRecord> dal)
        {
            this._dal = dal;
            base.BaseDal = dal;
        }
    }
}