using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_IBasicInfoRepository; using WIDESEAWCS_IBasicInfoService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_BasicInfoService { public class Dt_MaterialInfo_HtyService : ServiceBase, IDt_MaterialInfo_HtyService { private readonly IDt_ContainerInfoRepository _ContainerInfoRepository; private readonly IUnitOfWorkManage _unitOfWorkManage; public Dt_MaterialInfo_HtyService(IDt_MaterialInfo_HtyRepository BaseDal, IDt_ContainerInfoRepository dt_ContainerInfoRepository, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal) { _ContainerInfoRepository = dt_ContainerInfoRepository; _unitOfWorkManage = unitOfWorkManage; } } }