leiqunqing
2026-02-06 15b3879cd259108e7ebb755fe02c190f28f1e20c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_BasicInfoService
{
    public class BoxingService : ServiceBase<Dt_Boxing, IRepository<Dt_Boxing>>, IBoxingService
    {
        public BoxingService(IRepository<Dt_Boxing> BaseDal) : base(BaseDal)
        {
        }
 
        public IRepository<Dt_Boxing> Repository => BaseDal;
    }
}