Example #1
0
 public GrupoStore(DbContext context)
 {
     if (context == null)
     {
         throw new ArgumentNullException("context");
     }
     this.Context     = context;
     this._groupStore = new GroupStoreBase(context);
 }
 public GrupoStore(DbContext context)
 {
     if (context == null)
     {
         throw new ArgumentNullException("context");
     }
     this.Context = context;
     this._groupStore = new GroupStoreBase(context);
 }
Example #3
0
 protected virtual void Dispose(bool disposing)
 {
     if (this.DisposeContext && disposing && this.Context != null)
     {
         this.Context.Dispose();
     }
     this._disposed   = true;
     this.Context     = null;
     this._groupStore = null;
 }
 protected virtual void Dispose(bool disposing)
 {
     if (this.DisposeContext && disposing && this.Context != null)
     {
         this.Context.Dispose();
     }
     this._disposed = true;
     this.Context = null;
     this._groupStore = null;
 }