コード例 #1
0
 public void Configure(IServerRoutingTable serverRoutingTable)
 {
     using (var db = new PandaRtaDbContext())
     {
         db.Database.EnsureCreated();
     }
 }
コード例 #2
0
 public PackageServices(PandaRtaDbContext db, IReceiptsServices receiptsServices)
 {
     this.db = db;
     this.receiptsServices = receiptsServices;
 }
コード例 #3
0
ファイル: ReceiptsServices.cs プロジェクト: EmORz/SULS
 public ReceiptsServices(PandaRtaDbContext db)
 {
     this.db = db;
 }
コード例 #4
0
ファイル: UserServices.cs プロジェクト: EmORz/SULS
 public UserServices(PandaRtaDbContext db)
 {
     this.db = db;
 }