コード例 #1
0
ファイル: Association.cs プロジェクト: BrayanGS/DINADECO
 public Association(int id, int registryCode, string name, string region, string canton, string status,
                    string active, string province, string legalDocumet, string superavit, string adequacy, string affiavit, int type,
                    Employee employee, WorkPlan workPlan, Settlement settlement, EconomicReport economicReport,
                    ConcreteLiquidation concreteLiquidation)
 {
     this.id                  = id;
     this.registryCode        = registryCode;
     this.name                = name;
     this.region              = region;
     this.canton              = canton;
     this.status              = status;
     this.active              = active;
     this.province            = province;
     this.legalDocument       = legalDocumet;
     this.superavit           = superavit;
     this.adequacy            = adequacy;
     this.affidavit           = affiavit;
     this.type                = type;
     this.workPlan            = workPlan;
     this.settlement          = settlement;
     this.economicReport      = economicReport;
     this.concreteLiquidation = concreteLiquidation;
 }
コード例 #2
0
ファイル: Association.cs プロジェクト: BrayanGS/DINADECO
 public Association(int registryCode, string name, string canton, string region, string status, string active, string province, WorkPlan workPlan, EconomicReport economicReport, Settlement settlement, ConcreteLiquidation concreteLiquidation)
 {
     this.registryCode        = registryCode;
     this.name                = name;
     this.canton              = canton;
     this.region              = region;
     this.status              = status;
     this.active              = active;
     this.province            = province;
     this.workPlan            = workPlan;
     this.economicReport      = economicReport;
     this.settlement          = settlement;
     this.concreteLiquidation = concreteLiquidation;
 }
コード例 #3
0
ファイル: Association.cs プロジェクト: BrayanGS/DINADECO
 public Association(int registryCode, string name, string canton, string region, string status, string active, string province, string legalDocument, string superavit, string adequacy, string affidavit, int type, WorkPlan workPlan, Settlement settlement, EconomicReport economicReport, ConcreteLiquidation concreteLiquidation) : this(registryCode, name, canton, region, status, active, province)
 {
     this.legalDocument       = legalDocument;
     this.superavit           = superavit;
     this.adequacy            = adequacy;
     this.affidavit           = affidavit;
     this.type                = type;
     this.workPlan            = workPlan;
     this.settlement          = settlement;
     this.economicReport      = economicReport;
     this.concreteLiquidation = concreteLiquidation;
 }