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