コード例 #1
0
    /// <summary>
    /// Get all Levels that belong to selected Section
    /// </summary>
    /// <param name="worldId"></param>
    /// <param name="sectionId"></param>
    /// <returns>Return Section object containing list of Level object</returns>
    public Section GetSectionLevels(int worldId, int sectionId)
    {
        SectionDaoImpl sectionDao  = new SectionDaoImpl();
        Section        findSection = sectionDao.GetSectionLevels(worldId, sectionId);

        return(findSection);
    }