コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SearchAdapter"/> class.
        /// </summary>
        /// <param name="zipAdapter">The zip adapter.</param>
        public SearchAdapter(
			IFriendlyZipAdapter zipAdapter,
			IFeaturedAdapter featuredAdapter)
        {
            this.zipAdapter = zipAdapter;
            this.featuredAdapter = featuredAdapter;
        }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchAdapter"/> class.
 /// </summary>
 /// <param name="zipAdapter">The zip adapter.</param>
 public SearchAdapter(
     IFriendlyZipAdapter zipAdapter,
     IFeaturedAdapter featuredAdapter)
 {
     this.zipAdapter      = zipAdapter;
     this.featuredAdapter = featuredAdapter;
 }
コード例 #3
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;
 }
コード例 #4
0
 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;
 }
コード例 #5
0
        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;
        }
コード例 #6
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;
 }