public ISpellStatBlock FindById(int Id)
        {
            SpellService spellService = new SpellService(ConnectionString);
            spell        tempSpell    = spellService.FindBy(Id);

            return(MapThisToSpellStatBlockObject(tempSpell));
        }