public EnterprisePartyDomainService(IAntiCorruptionAdapter<EnterpriseParty, EnterprisePartyDto> adapter, IEnterprisePartyAntiCorruptionAdapter enterprisePartyAntiCorruptionAdapter) { this.Adapter = adapter; this.EnterprisePartyAntiCorruptionAdapter = enterprisePartyAntiCorruptionAdapter; }
public GoodUnitDomainService(IAntiCorruptionAdapter<GoodUnit, GoodUnitDto> antiCorruptionAdapter, IRepository<GoodUnit> goodUnitFakeRepository) { this.goodUnitFakeRepository = goodUnitFakeRepository; this.Adapter = antiCorruptionAdapter; }
public VesselDomainService(IAntiCorruptionAdapter<Vessel, WarehouseDto> adapter) { this.Adapter = adapter; }