예제 #1
0
 public RegistrationRule(DateTime startDate, DateTime?endDate, int maxRegistrants)
 {
     _registrationRule = new MPRegistrationRule
     {
         StartDate          = startDate,
         EndDate            = endDate,
         MaximumRegistrants = maxRegistrants
     };
 }
예제 #2
0
 RegistrationRule(MPRegistrationRule registrationRule)
 {
     _registrationRule = registrationRule;
 }