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>, IOutboundOrder_HtyService { private readonly IMapper _mapper; public IRepository Repository => BaseDal; public OutboundOrder_HtyService(IRepository BaseDal, IMapper mapper) : base(BaseDal) { _mapper = mapper; } } }