コード例 #1
0
    /// <summary>
    /// Get all Section that belongs to selected World
    /// </summary>
    /// <param name="worldId"></param>
    /// <returns>Return list of Section object</returns>
    public List <Section> GetWorldSections(int worldId)
    {
        SectionDaoImpl sectionDao  = new SectionDaoImpl();
        List <Section> sectionList = new List <Section>();

        sectionList = sectionDao.GetWorldSections(worldId);
        return(sectionList);
    }