public InformationManager(POCDBEntities context)
 {
     this._context = context;
 }
Beispiel #2
0
 public UserManager(POCDBEntities context)
 {
     this._context = context;
 }
Beispiel #3
0
 public UnitOfWork()
 {
     this._context = new POCDBEntities();
     this._context.Configuration.LazyLoadingEnabled   = false; //This should kept false for faster loading
     this._context.Configuration.ProxyCreationEnabled = false;
 }