Welcome to the CF8 Code Shares, check out the shares below.
mikekollen
1/9/08 9:40 PM est.
1/10/08 9:40 PM est.
Comments:
-
package com.mikekollen.west.bsm.event {
-
import flash.events.Event;
-
import com.adobe.cairngorm.control.CairngormEvent;
-
-
import com.mikekollen.west.bsm.command.LoadEnrollmentsByIdCommand; // Links to
-
public class LoadEnrollmentsByIdEvent extends CairngormEvent {
-
-
public static var LOAD_COURSE_ENROLLMENTS_BY_ID : String = "LoadCourseEnrollmentsByID";
-
-
public var CourseScheduledID:int;
-
public function LoadEnrollmentsByIdEvent(CourseScheduledID:int) {
-
super( LOAD_COURSE_ENROLLMENTS_BY_ID );
-
this.CourseScheduledID = CourseScheduledID;
-
}
-
-
}
-
}