Beispiel #1
0
 public ProductDetailController(Ecommerce_socksService service, PathProvider provider,
                                CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
     this.provider       = provider;
 }
Beispiel #2
0
 public CategorySectionController(Ecommerce_socksService service,
                                  IMemoryCache memoryCache, CachingService caching)
 {
     this.service        = service;
     this.memoryCache    = memoryCache;
     this.cachingService = caching;
 }
Beispiel #3
0
 public UserController(Ecommerce_socksService APIservice, CachingService service
                       , PathProvider provider, MailService mail)
 {
     this.service        = APIservice;
     this.cachingService = service;
     this.pathProvider   = provider;
     this.mailService    = mail;
 }
Beispiel #4
0
 public HomeController(Ecommerce_socksService service, CachingService caching,
                       PathProvider provider, MailService mail)
 {
     this.service        = service;
     this.cachingService = caching;
     this.pathProvider   = provider;
     this.mailService    = mail;
 }
Beispiel #5
0
 public FavoritesController(Ecommerce_socksService service, CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
 }
Beispiel #6
0
 public IdentityController(Ecommerce_socksService APIservice, CachingService service) { 
     this.service = APIservice;
     this.cachingService = service;
 }
Beispiel #7
0
 public CheckoutController(Ecommerce_socksService service, CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
 }