Ejemplo n.º 1
0
 public AffinityLinkService(
     ICommonLinkService commonLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _technologyLinkService = technologyLinkService;
 }
Ejemplo n.º 2
0
 public BuildingLinkService(
     ICommonLinkService commonLinkService,
     IBuildingPrecisLinkService buildingPrecisLinkService,
     ITechnologyPrecisLinkService technologyPrecisLinkService)
 {
     _commonLinkService = commonLinkService;
     _buildingPrecisLinkService = buildingPrecisLinkService;
     _technologyPrecisLinkService = technologyPrecisLinkService;
 }
Ejemplo n.º 3
0
 public UnitLinkService(
     ICommonLinkService commonLinkService,
     IUnitPrecisLinkService unitPrecisLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _unitPrecisLinkService = unitPrecisLinkService;
     _technologyLinkService = technologyLinkService;
 }
Ejemplo n.º 4
0
 public TechnologyLinkService(
     ICommonLinkService commonLinkService,
     IUnitPrecisLinkService unitLinkService,
     IBuildingPrecisLinkService buildingLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _unitLinkService = unitLinkService;
     _buildingLinkService = buildingLinkService;
     _technologyLinkService = technologyLinkService;
 }