public void Dispose()
        {
            TrandingQuery = null;

            GC.Collect();
            GC.WaitForFullGCComplete();
        }
Пример #2
0
 public TransactionController(IMediator mediator,
                              ITrendingQuery trandingQuery,
                              ITransactionQuery transactionQuery)
 {
     Mediator         = mediator;
     TrandingQuery    = trandingQuery;
     TransactionQuery = transactionQuery;
 }
 public GetTrendingIntegrationEventHandler(ITrendingQuery trandingQuery)
 {
     TrandingQuery = trandingQuery;
 }