1
heshaofeng
2025-11-09 f747c5151051c12a1c44eaf5ef49f0a3805702b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using AutoMapper;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_OutboundService
{
    public partial class OutboundOrder_HtyService : ServiceBase<Dt_OutboundOrder_Hty, IRepository<Dt_OutboundOrder_Hty>>, IOutboundOrder_HtyService
    {
        private readonly IMapper _mapper;
        public IRepository<Dt_OutboundOrder_Hty> Repository => BaseDal;
 
        public OutboundOrder_HtyService(IRepository<Dt_OutboundOrder_Hty> BaseDal, IMapper mapper) : base(BaseDal)
        {
            _mapper = mapper;
        }
    }
}