コード例 #1
0
ファイル: LogisticsPartnerLogic.cs プロジェクト: Jawohi/src
 public LogisticsPartnerLogic(IMapper mapper, IParcelRepository parcelRepository, IWarehouseRepository wareHouseRepository, IHopRepository hopRepository, IGeoCodingAgent geoCodingAgent, IRouteCalculator routeCalculator, ILogger <LogisticsPartnerLogic> logger)
 {
     this.mapper              = mapper;
     this.parcelRepository    = parcelRepository;
     this.geoCodingAgent      = geoCodingAgent;
     this.hopRepository       = hopRepository;
     this.wareHouseRepository = wareHouseRepository;
     this.routeCalculator     = routeCalculator;
     this.logger              = logger;
 }
コード例 #2
0
ファイル: RecipientLogic.cs プロジェクト: Jawohi/src
 public RecipientLogic(IMapper mapper, IParcelRepository parcelRepository, ILogger <RecipientLogic> logger, IGeoCodingAgent geoCodingAgent, IRouteCalculator routeCalculator
                       , IWarehouseRepository wareHouseRepository, IHopRepository hopRepository, IWebhookRepository webhookRepository)
 {
     this.mapper              = mapper;
     this.parcelRepository    = parcelRepository;
     this.logger              = logger;
     this.hopRepository       = hopRepository;
     this.webhookRepository   = webhookRepository;
     this.geoCodingAgent      = geoCodingAgent;
     this.wareHouseRepository = wareHouseRepository;
     this.routeCalculator     = routeCalculator;
 }