Example #1
0
 protected void SetFreeTrialUnit(IntroductoryOffer.UnitType value)
 {
     this.FreeTrialUnit = value;
 }
Example #2
0
 protected void SetFreeTrialUnit(string value)
 {
     this.FreeTrialUnit = TryParseUnit(value);
 }
Example #3
0
 /// <summary>
 /// set Type of unit used for calculating length of introductory period.
 /// </summary>
 /// <param name="value"></param>
 /// <returns></returns>
 protected void SetIntroductoryUnit(IntroductoryOffer.UnitType value)
 {
     this.IntroductoryUnit = value;
 }
Example #4
0
 /// <summary>
 /// set Type of unit used for calculating length of introductory period.
 /// </summary>
 /// <param name="value"></param>
 /// <returns></returns>
 protected void SetIntroductoryUnit(string value)
 {
     this.IntroductoryUnit = TryParseUnit(value);
 }
Example #5
0
 protected void SetRegularUnit(IntroductoryOffer.UnitType value)
 {
     this.RegularUnit = value;
 }
Example #6
0
 protected void SetRegularUnit(string value)
 {
     this.RegularUnit = TryParseUnit(value);
 }