Пример #1
0
        public IndividualStatBlock GetIndividualByName(string name)
        {
            MonsterService _monsterService = new MonsterService(ConnectionString);
            monster        tempMonster     = _monsterService.GetMonsterByName(name);

            return((IndividualStatBlock)MapThisToIndividualStatBlockObject(tempMonster));
        }
        public MonsterStatBlock GetMonsterByName(string name)
        {
            MonsterService _monsterService = new MonsterService(ConnectionString);
            monster        tempMonster     = _monsterService.GetMonsterByName(name);

            return(MapThisToMonsterStatBlockObject(tempMonster));
        }