Exemplo n.º 1
0
 public AboutController(SportWorldContext SportWorldContext, [FromServices] ISecretSettings secrets)
 {
     _storeBl = new StoreBl(SportWorldContext);
     _secrets = secrets;
 }
Exemplo n.º 2
0
 public StoreController(CCContext ccContext)
 {
     _storeBl = new StoreBl(ccContext);
 }
Exemplo n.º 3
0
 public CatalogController(SportWorldContext SportWorldContext)
 {
     _productBl = new ProductBl(SportWorldContext);
     _storeBl   = new StoreBl(SportWorldContext);
 }
Exemplo n.º 4
0
 public CatalogController(CCContext ccContext)
 {
     _productBl = new ProductBl(ccContext);
     _storeBl   = new StoreBl(ccContext);
 }
Exemplo n.º 5
0
 public StoreController(SportWorldContext SportWorldContext)
 {
     _storeBl = new StoreBl(SportWorldContext);
 }
Exemplo n.º 6
0
 public CatalogController(HydraContext hydraContext)
 {
     _productBl = new ProductBl(hydraContext);
     _storeBl   = new StoreBl(hydraContext);
 }
Exemplo n.º 7
0
 public AboutController(HydraContext hydraContext, [FromServices] ISecretSettings secrets)
 {
     _storeBl = new StoreBl(hydraContext);
     _secrets = secrets;
 }
Exemplo n.º 8
0
 public StoreController(HydraContext hydraContext)
 {
     _storeBl = new StoreBl(hydraContext);
 }
Exemplo n.º 9
0
 public AboutController(SportWorldContext SportWorldContext, Keys keys)
 {
     _storeBl = new StoreBl(SportWorldContext);
     _keys    = keys;
 }
Exemplo n.º 10
0
 public AboutController(CCContext ccContext, [FromServices] ISecretSettings secrets)
 {
     _storeBl = new StoreBl(ccContext);
     _secrets = secrets;
 }