Exemplo n.º 1
0
        public string GetDriversIdentificationNumber(string driversName)
        {
            SQLDB_Records sqldbRecords = new SQLDB_Records(connectionString);
            int driversDataBlock;
            string driversIdentificationNumber;

            driversDataBlock = GetDataBlockIdByDriversName(driversName);
            driversIdentificationNumber = sqldbRecords.Get_DriversNumber(driversDataBlock);
            return driversIdentificationNumber;
        }