Esempio n. 1
0
 /// <summary>
 /// 构造函数
 ///</summary>
 public LocationsAppService(
     IRepository <Locations, long> entityRepository
     , ILocationsManager entityManager
     )
 {
     _entityRepository = entityRepository;
     _entityManager    = entityManager;
 }
Esempio n. 2
0
 public PredictionsManager(
     INextBusClient nextBusClient,
     ICachingService cachingService,
     ILocationsManager locationsManager,
     BusVbotDbContext dbContext,
     IAgencyServiceAccessor agencyServiceAccessor
     )
 {
     _nextBusClient         = nextBusClient;
     _cachingService        = cachingService;
     _locationsManager      = locationsManager;
     _dbContext             = dbContext;
     _agencyServiceAccessor = agencyServiceAccessor;
 }
Esempio n. 3
0
 public LocationsController(ILocationsManager locationsManager)
 {
     _locationsManager = locationsManager;
 }
Esempio n. 4
0
 public MapController(ILocationsManager argLocationsManager)
 {
     locationsManager = argLocationsManager;
 }
Esempio n. 5
0
 public LocationController(ILocationsManager locationsManager)
 {
     this.manager = locationsManager;
 }