public PedidoRepository(DesafioLancheContext ctx) : base(ctx)
 {
     this.ctx = ctx;
 }
Beispiel #2
0
 public PromocaoXingredienteRepository(DesafioLancheContext ctx) : base(ctx)
 {
     this.ctx = ctx;
 }
Beispiel #3
0
 public GenericRepository(DesafioLancheContext ctx)
 {
     this.ctx = ctx;
     dataset  = this.ctx.Set <T>();
 }
Beispiel #4
0
 public EnderecoRepository(DesafioLancheContext ctx) : base(ctx)
 {
     this.ctx = ctx;
 }
Beispiel #5
0
 public ClienteRepository(DesafioLancheContext ctx) : base(ctx)
 {
     this.ctx = ctx;
 }
Beispiel #6
0
 public PedidoXlancheXingredienteRepository(DesafioLancheContext ctx) : base(ctx)
 {
     this.ctx = ctx;
 }