Exemplo n.º 1
0
 public OtherUserPropertyService(UserNaturalLanguageService userNaturalLanguageService, PropertyMatchService propertyMatchService)
 {
     _userNaturalLanguageService = userNaturalLanguageService;
     _propertyMatchService       = propertyMatchService;
 }
 public UserSelfPropertyRetrievalService(UserNaturalLanguageService userNaturalLanguageService, PropertyValueService propertyValueService)
 {
     _userNaturalLanguageService = userNaturalLanguageService;
     _propertyValueService       = propertyValueService;
 }
 public OtherUserPropertyService()
 {
     userNaturalLanguageService = new UserNaturalLanguageService();
     propertyMatchService       = new PropertyMatchService();
 }
 public BotPropertyRetrievalService(BotSelfPropertyRetrievalService botSelfPropertyRetrievalService, UserNaturalLanguageService userNaturalLanguageService, PropertyValueService propertyValueService)
 {
     _botSelfPropertyRetrievalService = botSelfPropertyRetrievalService;
     _userNaturalLanguageService      = userNaturalLanguageService;
     _propertyValueService            = propertyValueService;
 }
Exemplo n.º 5
0
        private List <string> excludePropertySearch = new List <string>(); //TODO: not I am going, etc.

        public UserPropertyService(UserNaturalLanguageService userNaturalLanguageService, PropertyMatchService propertyMatchService, PropertyFromQuestionService propertyFromQuestionService)
        {
            _userNaturalLanguageService  = userNaturalLanguageService;
            _propertyMatchService        = propertyMatchService;
            _propertyFromQuestionService = propertyFromQuestionService;
        }
Exemplo n.º 6
0
 public UserPropertyRetrievalService()
 {
     propertyValueService             = new PropertyValueService();
     userSelfPropertyRetrievalService = new UserSelfPropertyRetrievalService();
     userNaturalLanguageService       = new UserNaturalLanguageService();
 }
 public BotPropertyRetrievalService()
 {
     botSelfPropertyRetrievalService = new BotSelfPropertyRetrievalService();
     userNaturalLanguageService = new UserNaturalLanguageService();
     propertyValueService = new PropertyValueService();
 }
Exemplo n.º 8
0
        private List <string> excludePropertySearch = new List <string>(); //TODO: not I am going, etc.

        public UserPropertyService()
        {
            userNaturalLanguageService  = new UserNaturalLanguageService();
            propertyMatchService        = new PropertyMatchService();
            propertyFromQuestionService = new PropertyFromQuestionService();
        }