public DatabaseService(string location = "BotDatabase.db")
        {
            DatabaseContext = new QualifierDatabaseContext(location);

            //Ensure database is created
            DatabaseContext.Database.EnsureCreated();
        }
        public DatabaseService(string location, IServiceProvider serviceProvider)
        {
            DatabaseContext = new QualifierDatabaseContext(location);

            //Ensure database is created
            DatabaseContext.Database.EnsureCreated();
            DatabaseContext.Database.Migrate();
        }