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;
 }
 public ClienteRepository(DeliveryContext context)
 {
     this._context = context;
 }