Esempio n. 1
0
 public ConfigBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 2
0
 public ProductBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 3
0
 public CategoryBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 4
0
 public AuthBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 5
0
 public ReviewBusinessLogic(IAuthBusinessLogic authBusinessLogic, ISportStoreRepository repository)
 {
     this.authBusinessLogic = authBusinessLogic;
     this.repository        = repository;
 }
Esempio n. 6
0
 public CartBusinessLogic(IAuthBusinessLogic authBusinessLogic, IConfigBusinessLogic configBusinessLogic, ISportStoreRepository repository)
 {
     this.authBusinessLogic   = authBusinessLogic;
     this.configBusinessLogic = configBusinessLogic;
     this.repository          = repository;
 }
Esempio n. 7
0
 public PaymentMethodBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 8
0
 public ShippingAddressBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 9
0
 public ManufacturerBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 10
0
 public PurchaseBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }
Esempio n. 11
0
 public ManagementBusinessLogic(ISportStoreRepository repository)
 {
     this.repository = repository;
 }