public WarehouseRepository(SimCardDBContext context)
 {
     this.context = context;
 }
Exemple #2
0
 public ShopRepository(SimCardDBContext context)
 {
     this.context = context;
 }
Exemple #3
0
 public EventRepository(SimCardDBContext context)
 {
     this.context = context;
 }
 public CustomerRepository(SimCardDBContext context)
 {
     this.context = context;
 }
Exemple #5
0
 public ProductRepository(SimCardDBContext context)
 {
     this.context = context;
 }
Exemple #6
0
 public ConfigurationRepository(SimCardDBContext context)
 {
     this.context = context;
 }
Exemple #7
0
 public EmailRepository(SimCardDBContext context, ICustomerRepository customerRepository)
 {
     this.context            = context;
     this.customerRepository = customerRepository;
 }