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