Exemplo n.º 1
0
    public static void ProceedFrequentDistribution()
    {
        try
        {
            log = new StringBuilder();

            // [1]Escrow for Representatives Actions
            ConversationManager.CRON();

            // [2]Escrow for Cryptocurrency Trading
            CryptocurrencyPlatformManager.CRON();
        }
        catch (Exception ex)
        {
            ErrorLogger.Log(ex.Message, LogType.CRON);
            Log("FrequentCRON error: " + ex.Message);
        }
    }