示例#1
0
            public File_Error_TypeRow AddFile_Error_TypeRow(int FileErrorTypeID, string ShortDesc, string LongDesc)
            {
                File_Error_TypeRow rowFile_Error_TypeRow = ((File_Error_TypeRow)(NewRow()));

                rowFile_Error_TypeRow.ItemArray = new object[] {
                    FileErrorTypeID,
                    ShortDesc,
                    LongDesc
                };
                Rows.Add(rowFile_Error_TypeRow);
                return(rowFile_Error_TypeRow);
            }
示例#2
0
 public File_Error_TypeRowChangeEvent(File_Error_TypeRow row, DataRowAction action)
 {
     eventRow    = row;
     eventAction = action;
 }
示例#3
0
 public void RemoveFile_Error_TypeRow(File_Error_TypeRow row)
 {
     Rows.Remove(row);
 }
示例#4
0
 public void AddFile_Error_TypeRow(File_Error_TypeRow row)
 {
     Rows.Add(row);
 }