예제 #1
0
 public ProdutoRepository(DeliveryContext context)
 {
     this._context = context;
 }
예제 #2
0
 public PedidoRepository(DeliveryContext context)
 {
     this._context = context;
 }
예제 #3
0
 public RestauranteRepository(DeliveryContext context) //Construtor com INJEÇÃO DE DEPENDENCIA.
 {
     this._context = context;
 }
예제 #4
0
 public ClienteRepository(DeliveryContext context)
 {
     this._context = context;
 }