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;
|
}
|
}
|
}
|