Ejemplo n.º 1
0
 public Repository(LoanAppContext _Context)
 {
     this.Context = _Context;
 }
Ejemplo n.º 2
0
 public UnitOfWork(LoanAppContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public void Dispose()
 {
     Context = null;
 }
Ejemplo n.º 4
0
 public LoanModuleTest()
 {
     Context = new LoanAppContext();
 }
Ejemplo n.º 5
0
 public LoanRepository(LoanAppContext Context) : base(Context)
 {
 }
 public CustomerRepository(LoanAppContext Context) : base(Context)
 {
 }