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:

  1. package com.mikekollen.west.bsm.event {
  2.     import flash.events.Event;
  3. import com.adobe.cairngorm.control.CairngormEvent;
  4.     
  5.     import com.mikekollen.west.bsm.command.LoadEnrollmentsByIdCommand; // Links to
  6. public class LoadEnrollmentsByIdEvent extends CairngormEvent {
  7.      public static var LOAD_COURSE_ENROLLMENTS_BY_ID : String = "LoadCourseEnrollmentsByID";
  8.     
  9.      public var CourseScheduledID:int;
  10.         public function LoadEnrollmentsByIdEvent(CourseScheduledID:int) {
  11.             super( LOAD_COURSE_ENROLLMENTS_BY_ID );
  12.             this.CourseScheduledID = CourseScheduledID;
  13.         }
  14.     }
  15. }

   

© 2008 | EverFro, L.P.