コード例 #1
0
 public Repository(LoanAppContext _Context)
 {
     this.Context = _Context;
 }
コード例 #2
0
 public UnitOfWork(LoanAppContext context)
 {
     _context = context;
 }
コード例 #3
0
 public void Dispose()
 {
     Context = null;
 }
コード例 #4
0
 public LoanModuleTest()
 {
     Context = new LoanAppContext();
 }
コード例 #5
0
 public LoanRepository(LoanAppContext Context) : base(Context)
 {
 }
コード例 #6
0
 public CustomerRepository(LoanAppContext Context) : base(Context)
 {
 }