Esempio n. 1
0
 private DDDClass.NationNumeric Get_VehicleOverview_RegistrationNation(int dataBlockId)
 {
     SQLDB_Records sqldbRecords = new SQLDB_Records(connectionString, sqlDB.GETMYSQLCONNECTION());
     DDDClass.NationNumeric RegistrationNation = new DDDClass.NationNumeric(sqldbRecords.Get_VOverview_RegistrationNation(dataBlockId));
     return RegistrationNation;
 }
Esempio n. 2
0
 public string GetDriversCardIssuingMemberState(int dataBlockId)
 {
     SQLDB_Records sqldbRecords = new SQLDB_Records(connectionString);
     string cardIssuingMemberState = sqldbRecords.Get_DriversCardIssuingMemberState(dataBlockId);
     string stateName;
     DDDClass.NationNumeric nationNumeric = new DDDClass.NationNumeric(Convert.ToSByte(cardIssuingMemberState));
     stateName = nationNumeric.ToString();
     return stateName;
 }