示例#1
0
 public ClienteRepository(SampleCqrsDbContext context) : base(context)
 {
 }
示例#2
0
 public UnitOfWork(SampleCqrsDbContext context)
 {
     this.context = context;
 }
 public PedidoRepository(SampleCqrsDbContext context) : base(context)
 {
 }
示例#4
0
 public Repository(SampleCqrsDbContext context)
 {
     this.context = context;
 }