Example #1
0
 public byte PreencheAtributo(System.Data.IDataReader lDataReader, int NumeroColuna, byte Atributo)
 {
     if ((lDataReader.IsDBNull(NumeroColuna) == true))
     {
         return(byte.MinValue);
     }
     else
     {
         return(lDataReader.GetByte(NumeroColuna));
     }
 }
Example #2
0
 public byte GetByte(int i)
 {
     return(_innerReader.GetByte(i));
 }