コード例 #1
0
 public ProductsService(DemoShopDbContext context) : base(context)
 {
 }
コード例 #2
0
ファイル: OrdersService.cs プロジェクト: ryanhelms/BankSystem
 public OrdersService(DemoShopDbContext context) : base(context)
 {
 }
コード例 #3
0
 protected BaseService(DemoShopDbContext context)
 {
     this.Context = context;
 }