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