public LogosRow AddLogosRow(int codigo, string descripcion, byte[] imagen)
            {
                LogosRow rowLogosRow = ((LogosRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    codigo,
                    descripcion,
                    imagen
                };
                rowLogosRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLogosRow);
                return(rowLogosRow);
            }
 public LogosRowChangeEvent(LogosRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveLogosRow(LogosRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddLogosRow(LogosRow row)
 {
     this.Rows.Add(row);
 }