Exemplo n.º 1
0
 public void Configure(IServerRoutingTable serverRoutingTable)
 {
     using (var context = new MusacaAppDb())
     {
         context.Database.EnsureCreated();
     }
 }
Exemplo n.º 2
0
 public ProductService(MusacaAppDb appDb)
 {
     this.context = appDb;
 }
Exemplo n.º 3
0
 public OrderService(MusacaAppDb appDb)
 {
     this.context = appDb;
 }