public InvitationLogData.InvitationLogsRow AddInvitationLogsRow(int SurveyId, int EmailId, string ExceptionMessage, string ExceptionType, DateTime ErrorDate, string Email)
 {
     InvitationLogData.InvitationLogsRow row = (InvitationLogData.InvitationLogsRow)base.NewRow();
     object[] objArray = new object[7];
     objArray[1]   = SurveyId;
     objArray[2]   = EmailId;
     objArray[3]   = ExceptionMessage;
     objArray[4]   = ExceptionType;
     objArray[5]   = ErrorDate;
     objArray[6]   = Email;
     row.ItemArray = objArray;
     base.Rows.Add(row);
     return(row);
 }
 public InvitationLogsRowChangeEvent(InvitationLogData.InvitationLogsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveInvitationLogsRow(InvitationLogData.InvitationLogsRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddInvitationLogsRow(InvitationLogData.InvitationLogsRow row)
 {
     base.Rows.Add(row);
 }
 public InvitationLogsRowChangeEvent(InvitationLogData.InvitationLogsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }