Exemple #1
0
        public override System.Data.DataTable Clone()
        {
            AppointmentDataTable cln = ((AppointmentDataTable)(base.Clone()));

            cln.InitVars();
            return(cln);
        }
Exemple #2
0
 private void InitClass()
 {
     this.DataSetName             = "Appointments";
     this.Prefix                  = "";
     this.Locale                  = new System.Globalization.CultureInfo("en-AU");
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableAppointment        = new AppointmentDataTable();
     base.Tables.Add(this.tableAppointment);
 }
Exemple #3
0
 internal void InitVars(bool initTable)
 {
     this.tableAppointment = ((AppointmentDataTable)(base.Tables["Appointment"]));
     if ((initTable == true))
     {
         if ((this.tableAppointment != null))
         {
             this.tableAppointment.InitVars();
         }
     }
 }
Exemple #4
0
 internal AppointmentRow(System.Data.DataRowBuilder rb)
     :
     base(rb)
 {
     this.tableAppointment = ((AppointmentDataTable)(this.Table));
 }