public ISpellStatBlock GetSpellByName(string name)
        {
            SpellService spellService = new SpellService(ConnectionString);
            spell        tempSpell    = spellService.GetSpellByName(name);

            return(MapThisToSpellStatBlockObject(tempSpell));
        }