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