コード例 #1
0
 public RoutingService(IRoutingRepository routingRepository,
                       IApplicationUserRepository applicationUserRepository,
                       IUnitOfWork unitOfWork)
     : base(routingRepository, unitOfWork)
 {
     this._repository   = routingRepository;
     _routingRepository = routingRepository;
     _userRepository    = applicationUserRepository;
 }
コード例 #2
0
 public RoutingService(IRoutingRepository routingRepository)
 {
     this._routingRepository = routingRepository;
 }
コード例 #3
0
ファイル: RoutingController.cs プロジェクト: dmngrsk/LuckyDex
 public RoutingController(IRoutingRepository dexEntryRepository)
 {
     _routingRepository = dexEntryRepository;
 }