Esempio n. 1
0
 protected void CreateDbContext()
 {
     context = new ShareHolderContext();
     context.Configuration.ProxyCreationEnabled = false;
     context.Configuration.LazyLoadingEnabled   = false;
 }
Esempio n. 2
0
 public UoWVotingByHand(ShareHolderContext context)
 {
     this.context = context;
 }
Esempio n. 3
0
 public VotingByHandRepo(ShareHolderContext context)
 {
     this._context = context;
 }
Esempio n. 4
0
 public VotingCardRepo(ShareHolderContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public ShareHolderRepo(ShareHolderContext context)
 {
     this._context = context;
 }