コード例 #1
0
 public WarehouseRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #2
0
ファイル: ShopRepository.cs プロジェクト: onlinor/simcard1
 public ShopRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #3
0
ファイル: EventRepository.cs プロジェクト: onlinor/simcard1
 public EventRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public CustomerRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #5
0
 public ProductRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #6
0
 public ConfigurationRepository(SimCardDBContext context)
 {
     this.context = context;
 }
コード例 #7
0
 public EmailRepository(SimCardDBContext context, ICustomerRepository customerRepository)
 {
     this.context            = context;
     this.customerRepository = customerRepository;
 }