示例#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
 public ReceiptsServices(PandaRtaDbContext db)
 {
     this.db = db;
 }
示例#4
0
 public UserServices(PandaRtaDbContext db)
 {
     this.db = db;
 }