Example #1
0
 public EB01(string code, string descript)
 {
     this.code        = code;
     this.descript    = descript;
     this.benefitType = InsBenefitType.ActiveCoverage;          //ignored
     this.isSupported = false;
 }
Example #2
0
 public EB01(string code, string descript, InsBenefitType benefitType)
 {
     this.code        = code;
     this.descript    = descript;
     this.benefitType = benefitType;
     this.isSupported = true;
 }
Example #3
0
File: EB271.cs Project: mnisl/OD
		public EB01(string code,string descript) {
			this.code=code;
			this.descript=descript;
			this.benefitType=InsBenefitType.ActiveCoverage;//ignored
			this.isSupported=false;
		}
Example #4
0
File: EB271.cs Project: mnisl/OD
		public EB01(string code,string descript,InsBenefitType benefitType) {
			this.code=code;
			this.descript=descript;
			this.benefitType=benefitType;
			this.isSupported=true;
		}