private IReadOnlyCollection <T> GetSQL <T>(Dictionary <string, string> arguments = null)
            where T : BaseAbstract
        {
            IntrinioDatabase        db      = new IntrinioDatabase();
            IReadOnlyCollection <T> records = db.Set <T>()
                                              .ToArray();

            return(records);
        }
        internal IntrinioHelper(string username         = null,
                                string password         = null,
                                string workingDirectory = null)
        {
            Username         = username ?? Resources.Intrinio_Username;
            Password         = password ?? Resources.Intrinio_Password;
            WorkingDirectory = workingDirectory ?? Resources.Intrinio_Directory;
            DB = new IntrinioDatabase();

            Initialize();
        }