public RoutingService(IRoutingRepository routingRepository,
                       IApplicationUserRepository applicationUserRepository,
                       IUnitOfWork unitOfWork)
     : base(routingRepository, unitOfWork)
 {
     this._repository   = routingRepository;
     _routingRepository = routingRepository;
     _userRepository    = applicationUserRepository;
 }
 public RoutingService(IRoutingRepository routingRepository)
 {
     this._routingRepository = routingRepository;
 }
Example #3
0
 public RoutingController(IRoutingRepository dexEntryRepository)
 {
     _routingRepository = dexEntryRepository;
 }