Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PropertyController"/> class.
 /// </summary>
 /// <param name="propertyAdapter">The property adapter.</param>
 public PropertyController(
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter)
 {
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter   = searchAdapter;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PropertyController"/> class.
 /// </summary>
 /// <param name="propertyAdapter">The property adapter.</param>
 public PropertyController(
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter)
 {
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter = searchAdapter;
 }
        public SearchController(
			ISearchAdapter searchAdapter,
			IAuthAdapter authAdapter,
			IAccountAdapter accountAdapter)
        {
            this.searchAdapter = searchAdapter;
            this.authAdapter = authAdapter;
            this.accountAdapter = accountAdapter;
        }
 public SearchController(
     ISearchAdapter searchAdapter,
     IAuthAdapter authAdapter,
     IAccountAdapter accountAdapter)
 {
     this.searchAdapter  = searchAdapter;
     this.authAdapter    = authAdapter;
     this.accountAdapter = accountAdapter;
 }
        public PropertyController(
			IPropertyAdapter propertyAdapter,
			ISearchAdapter searchAdapter,
			IAuthAdapter authAdapter,
			IListingAdapter listingAdapter)
        {
            this.propertyAdapter = propertyAdapter;
            this.searchAdapter = searchAdapter;
            this.authAdapter = authAdapter;
            this.listingAdapter = listingAdapter;
        }
Example #6
0
 public PropertyController(
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter,
     IAuthAdapter authAdapter,
     IListingAdapter listingAdapter)
 {
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter   = searchAdapter;
     this.authAdapter     = authAdapter;
     this.listingAdapter  = listingAdapter;
 }
Example #7
0
 public Search()
 {
     _log.Info("ASA.Web.Services.SearchService.Search() object being created ...");
     if (ASA.Web.Services.Common.Config.Testing)
     {
         _memberAdapter = null;
         _searchAdapter = new MockSearchAdapter();
     }
     else
     {
         _memberAdapter = new AsaMemberAdapter();
         _searchAdapter = new SearchAdapter();
     }
 }
        public ListingController(
			IPropertyAdapter propertyAdapter,
			ISearchAdapter searchAdapter,
			IAuthAdapter authAdapter,
			IListingAdapter listingAdapter,
			IFeaturedAdapter featuredAdapter,
			IPropertyFacade propertyFacade)
        {
            this.propertyAdapter = propertyAdapter;
            this.searchAdapter = searchAdapter;
            this.authAdapter = authAdapter;
            this.listingAdapter = listingAdapter;
            this.featuredAdapter = featuredAdapter;
            this.propertyFacade = propertyFacade;
        }
Example #9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ListingController"/> class.
 /// </summary>
 /// <param name="listingAdapter">The listing adapter.</param>
 public ListingController(
     IListingAdapter listingAdapter,
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter,
     IOrderAdapter orderAdapter,
     IFeaturedAdapter featuredAdapter,
     IListingFacade listingFacade)
 {
     this.listingAdapter  = listingAdapter;
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter   = searchAdapter;
     this.orderAdapter    = orderAdapter;
     this.featuredAdapter = featuredAdapter;
     this.listingFacade   = listingFacade;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ListingController"/> class.
 /// </summary>
 /// <param name="listingAdapter">The listing adapter.</param>
 public ListingController(
     IListingAdapter listingAdapter,
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter,
     IOrderAdapter orderAdapter,
     IFeaturedAdapter featuredAdapter,
     IListingFacade listingFacade)
 {
     this.listingAdapter = listingAdapter;
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter = searchAdapter;
     this.orderAdapter = orderAdapter;
     this.featuredAdapter = featuredAdapter;
     this.listingFacade = listingFacade;
 }
 public ListingController(
     IPropertyAdapter propertyAdapter,
     ISearchAdapter searchAdapter,
     IAuthAdapter authAdapter,
     IListingAdapter listingAdapter,
     IFeaturedAdapter featuredAdapter,
     IPropertyFacade propertyFacade)
 {
     this.propertyAdapter = propertyAdapter;
     this.searchAdapter   = searchAdapter;
     this.authAdapter     = authAdapter;
     this.listingAdapter  = listingAdapter;
     this.featuredAdapter = featuredAdapter;
     this.propertyFacade  = propertyFacade;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchController"/> class.
 /// </summary>
 /// <param name="searchAdapter">The search adapter.</param>
 public SearchController(ISearchAdapter searchAdapter)
 {
     this.searchAdapter = searchAdapter;
 }
 public SearchController(ISearchAdapter searchAdapter, IFriendlyZipAdapter zipAdapter)
 {
     this.searchAdapter = searchAdapter;
     this.zipAdapter = zipAdapter;
 }
Example #14
0
 public ToolsService(ISearchAdapter searchAdapter)
 {
     _searchAdapter = searchAdapter;
 }
Example #15
0
 public SearchController(ISearchAdapter searchAdapter)
 {
     this.searchAdapter = searchAdapter;
 }
 public SearchController(ISearchAdapter searchAdapter, IFriendlyZipAdapter zipAdapter)
 {
     this.searchAdapter = searchAdapter;
     this.zipAdapter    = zipAdapter;
 }
Example #17
0
 public EndecaUtility(ISearchAdapter searchAdapter, IAsaMemberAdapter memberAdapter)
 {
     _memberAdapter = memberAdapter;
     _searchadapter = searchAdapter;
 }
Example #18
0
 public EndecaUtility()
 {
     _memberAdapter = new AsaMemberAdapter();
     _searchadapter = new SearchAdapter();
 }