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