source: main/waeup.sirp/trunk/src/waeup/sirp/students/__init__.py @ 6665

Last change on this file since 6665 was 6636, checked in by Henrik Bettermann, 13 years ago

Extend the public interface of the students package.

  • Property svn:keywords set to Id
File size: 563 bytes
Line 
1"""This package contains everything regarding students.
2"""
3# Make this a package.
4from waeup.sirp.students.student import (
5    Student, StudentFactory
6    )
7from waeup.sirp.students.container import StudentsContainer
8from waeup.sirp.students.studycourse import StudentStudyCourse
9from waeup.sirp.students.payments import StudentPayments
10from waeup.sirp.students.accommodation import StudentAccommodation
11
12
13__all__ = [
14    'Student',
15    'StudentFactory',
16    'StudentsContainer',
17    'StudentStudyCourse',
18    'StudentPayments',
19    'StudentAccommodation'
20    ]
Note: See TracBrowser for help on using the repository browser.