Exemplo n.º 1
0
 public TradingPartnerController(ITradingPartnerService tpService,
                                 IReadRepository <TradingPartner> tpReadRepository,
                                 IPropertyMappingService propertyMappingService)
 {
     _tpService              = tpService;
     _tpReadRepository       = tpReadRepository;
     _propertyMappingService = propertyMappingService;
 }
Exemplo n.º 2
0
 public TradingPartnerIdentifierController(IReadRepository <TradingPartnerIdentifier> readRepository,
                                           ITradingPartnerService tpService)
 {
     _readRepository = readRepository;
     _tpService      = tpService;
 }
 public TradingPartnerPropertyController(IReadRepository <TradingPartnerProperty> readRepository,
                                         ITradingPartnerService tpService)
 {
     _readRepository = readRepository;
     _tpService      = tpService;
 }