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