1
dengjunjie
8 天以前 5621e29bd415c85fd719e0e6366eae813b970ea2
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;
        }
    }
}