コード例 #1
0
ファイル: Diagnose.cs プロジェクト: TPLindley/Events
 /// <summary>
 /// Constructor to implement rules for 'Diagnose' event
 ///
 /// BaseEvent handles processing, this constructor sets the multiples and values to return
 /// </summary>
 public Diagnose()
 {
     Multiples.Add(2, DiagnoseLibConstants.Diagnose);
     Multiples.Add(7, DiagnoseLibConstants.Patient);
 }
コード例 #2
0
ファイル: Register.cs プロジェクト: TPLindley/Events
 /// <summary>
 /// Constructor to implement rules for 'Regster' event
 ///
 /// BaseEvent handles processing, this constructor sets the multiples and values to return
 /// </summary>
 public Register()
 {
     Multiples.Add(3, EventLibConstants.Register);
     Multiples.Add(5, EventLibConstants.Patient);
 }
コード例 #3
0
 /// <summary>
 /// Constructor to implement rules for 'Test' event
 ///
 /// BaseEvent handles processing, this constructor sets the multiples and values to return
 /// </summary>
 public Test()
 {
     Multiples.Add(4, TestLibConstants.Test);
     Multiples.Add(11, TestLibConstants.Patient);
 }