Ejemplo n.º 1
0
 public CustomerRepository(TestTriangleHOAContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public CustomerRepository()
 {
     _context = new TestTriangleHOAContext();
 }
 public CommonRepository()
 {
     _context = new TestTriangleHOAContext();
 }
 public CommonRepository(TestTriangleHOAContext context)
 {
     _context    = context;
     _spProvider = new SpProvider(_context);
 }
Ejemplo n.º 5
0
 public UnitOfWork()
 {
     this._context = new TestTriangleHOAContext();
 }
Ejemplo n.º 6
0
 public UnitOfWork(TestTriangleHOAContext context)
 {
     this._context = context;
 }
Ejemplo n.º 7
0
 public TicketRepository()
 {
     _context = new TestTriangleHOAContext();
 }