public OtherUserPropertyService(UserNaturalLanguageService userNaturalLanguageService, PropertyMatchService propertyMatchService)
 {
     _userNaturalLanguageService = userNaturalLanguageService;
     _propertyMatchService       = propertyMatchService;
 }
        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;
        }
 public OtherUserPropertyService()
 {
     userNaturalLanguageService = new UserNaturalLanguageService();
     propertyMatchService       = new PropertyMatchService();
 }
Exemple #4
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();
        }