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