using Mapster;
|
using Masuit.Tools;
|
using System.ComponentModel.DataAnnotations;
|
using WIDESEA_Core.BaseRepository;
|
using WIDESEA_DTO.Basic;
|
using WIDESEA_IOrderRepository;
|
|
namespace WIDESEA_StorageBasicService;
|
|
public class BoxingInfoHtyService : ServiceBase<DtBoxingInfo_Hty, IBoxingInfoHtyRepository>, IBoxingInfoHtyService
|
{
|
private readonly IDt_InboundOrderRepository _inboundOrderRepository;
|
private readonly IUnitOfWorkManage _unitOfWorkManage;
|
public BoxingInfoHtyService(IBoxingInfoHtyRepository BaseDal, IDt_InboundOrderRepository inboundOrderRepository, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal)
|
{
|
_inboundOrderRepository = inboundOrderRepository;
|
_unitOfWorkManage = unitOfWorkManage;
|
}
|
|
}
|