internal void InitVars(bool initTable) {
     this.tableEmployeeDetails = ((EmployeeDetailsDataTable)(base.Tables["EmployeeDetails"]));
     if ((initTable == true)) {
         if ((this.tableEmployeeDetails != null)) {
             this.tableEmployeeDetails.InitVars();
         }
     }
     this.tableVacationDetails = ((VacationDetailsDataTable)(base.Tables["VacationDetails"]));
     if ((initTable == true)) {
         if ((this.tableVacationDetails != null)) {
             this.tableVacationDetails.InitVars();
         }
     }
     this.relationVacationInformation_EmployeeInformation = this.Relations["VacationInformation_EmployeeInformation"];
 }
 private void InitClass() {
     this.DataSetName = "VacationsSummaryReportTDS";
     this.Prefix = "";
     this.Namespace = "http://tempuri.org/VacationsSummaryReportTDS.xsd";
     this.EnforceConstraints = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableEmployeeDetails = new EmployeeDetailsDataTable();
     base.Tables.Add(this.tableEmployeeDetails);
     this.tableVacationDetails = new VacationDetailsDataTable();
     base.Tables.Add(this.tableVacationDetails);
     this.relationVacationInformation_EmployeeInformation = new global::System.Data.DataRelation("VacationInformation_EmployeeInformation", new global::System.Data.DataColumn[] {
                 this.tableVacationDetails.EmployeeIDColumn}, new global::System.Data.DataColumn[] {
                 this.tableEmployeeDetails.EmployeeIDColumn}, false);
     this.Relations.Add(this.relationVacationInformation_EmployeeInformation);
 }
 internal EmployeeDetailsRow(global::System.Data.DataRowBuilder rb) : 
         base(rb) {
     this.tableEmployeeDetails = ((EmployeeDetailsDataTable)(this.Table));
 }