Ejemplo n.º 1
0
 public ProductDetailController(Ecommerce_socksService service, PathProvider provider,
                                CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
     this.provider       = provider;
 }
Ejemplo n.º 2
0
 public CategorySectionController(Ecommerce_socksService service,
                                  IMemoryCache memoryCache, CachingService caching)
 {
     this.service        = service;
     this.memoryCache    = memoryCache;
     this.cachingService = caching;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 5
0
 public FavoritesController(Ecommerce_socksService service, CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
 }
Ejemplo n.º 6
0
 public IdentityController(Ecommerce_socksService APIservice, CachingService service) { 
     this.service = APIservice;
     this.cachingService = service;
 }
Ejemplo n.º 7
0
 public CheckoutController(Ecommerce_socksService service, CachingService caching)
 {
     this.service        = service;
     this.cachingService = caching;
 }