Beispiel #1
0
 public void Configure(IServerRoutingTable serverRoutingTable)
 {
     using (var db = new PandaRteDbContext())
     {
         db.Database.EnsureCreated();
     }
 }
Beispiel #2
0
 public UsersServices(IUsersServices usersServices)
 {
     this.context = context;
 }
Beispiel #3
0
 public PackagesServices(PandaRteDbContext db, IReceiptsServices receiptsServices)
 {
     this.db = db;
     this.receiptsServices = receiptsServices;
 }
Beispiel #4
0
 public ReceiptsServices(PandaRteDbContext db)
 {
     this.db = db;
 }