コード例 #1
0
		public MobileSecondHandChatHub(IChatHubCacheService chatHubCacheService, TokenAuthorizationOptions tokenAuthorizationOptions, IConversationService conversationService)
		{
			this.chatHubCacheService = chatHubCacheService;
			this.tokenAuthorizationOptions = tokenAuthorizationOptions;
			this.handler = new JwtSecurityTokenHandler();
			this.conversationService = conversationService;
		}
コード例 #2
0
 public MobileSecondHandChatHub(IChatHubCacheService chatHubCacheService, TokenAuthorizationOptions tokenAuthorizationOptions, IConversationService conversationService)
 {
     this.chatHubCacheService       = chatHubCacheService;
     this.tokenAuthorizationOptions = tokenAuthorizationOptions;
     this.handler             = new JwtSecurityTokenHandler();
     this.conversationService = conversationService;
 }
コード例 #3
0
		public AdvertisementItemService(IAdvertisementItemDbService advertisementItemDbService, ICoordinatesCalculator coordinatesCalculator, IAdvertisementItemPhotosService advertisementItemPhotosService, IAppFilesPathHelper appFilesPathHelper, IKeywordsService keywordsService, IChatHubCacheService chatHubCacheService)
		{
			this.advertisementItemDbService = advertisementItemDbService;
			this.coordinatesCalculator = coordinatesCalculator;
			this.advertisementItemPhotosService = advertisementItemPhotosService;
			this.appFilesPathHelper = appFilesPathHelper;
			this.keywordsService = keywordsService;
			this.chatHubCacheService = chatHubCacheService;
		}
コード例 #4
0
 public AdvertisementItemService(IAdvertisementItemDbService advertisementItemDbService, ICoordinatesCalculator coordinatesCalculator, IPhotosService photosService, IAppFilesPathHelper appFilesPathHelper, IKeywordsService keywordsService, IChatHubCacheService chatHubCacheService, ILastUsersChecksCacheService lastUsersChecksCacheService, IGoogleMapsAPIService googleMapsAPIService)
 {
     this.advertisementItemDbService = advertisementItemDbService;
     this.coordinatesCalculator      = coordinatesCalculator;
     this.photosService               = photosService;
     this.appFilesPathHelper          = appFilesPathHelper;
     this.keywordsService             = keywordsService;
     this.chatHubCacheService         = chatHubCacheService;
     this.lastUsersChecksCacheService = lastUsersChecksCacheService;
     this.googleMapsAPIService        = googleMapsAPIService;
 }