Exemplo n.º 1
0
        private bool disposedValue = false; // To detect redundant calls

        protected virtual void Dispose(bool disposing)
        {
            if (!disposedValue)
            {
                if (disposing)
                {
                    // TODO: dispose managed state (managed objects).
                    if (_dbContext != null)
                    {
                        _dbContext.Dispose();
                    }
                }

                // TODO: free unmanaged resources (unmanaged objects) and override a finalizer below.
                // TODO: set large fields to null.
                _dbContext    = null;
                disposedValue = true;
            }
        }
Exemplo n.º 2
0
 public UnitOfWork(IdentityServerDbContext dbContext)
 {
     _dbContext = dbContext;
 }