Rundungsfehler durch sinnlosen Cast entfernt
This commit is contained in:
parent
4c5893c75b
commit
da475a4754
@ -199,7 +199,7 @@ namespace bsmd.database
|
||||
if (!reader.IsDBNull(1)) ladg.CargoHandlingType = reader.GetByte(1);
|
||||
if (!reader.IsDBNull(2)) ladg.CargoCodeNST = reader.GetString(2);
|
||||
if (!reader.IsDBNull(3)) ladg.CargoNumberOfItems = reader.GetInt32(3);
|
||||
if (!reader.IsDBNull(4)) ladg.CargoGrossQuantity_TNE = (float) reader.GetDouble(4);
|
||||
if (!reader.IsDBNull(4)) ladg.CargoGrossQuantity_TNE = reader.GetDouble(4);
|
||||
if (!reader.IsDBNull(5)) ladg.PortOfLoading = reader.GetString(5);
|
||||
if (!reader.IsDBNull(6)) ladg.PortOfDischarge = reader.GetString(6);
|
||||
if (!reader.IsDBNull(7)) ladg.Identifier = reader.GetString(7);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user