Exemplo n.º 1
0
        public virtual bool Fill(string fixedString)
        {
            ScriptRunLogRow newRow = (ScriptRunLogRow)this.NewRow();

            try
            {
                this.Rows.Add(newRow);
            }
            catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: ScriptRunLog.Fill(string) Method", e);
            }
            return(true);
        }
Exemplo n.º 2
0
        public bool AddScriptRunLogRow(string BuildFileName, string ScriptFileName, System.Guid ScriptId, string ScriptFileHash, DateTime CommitDate, int Sequence, string UserId, bool AllowScriptBlock, string AllowBlockUpdateId, string ScriptText, string Tag)
        {
            ScriptRunLogRow newRow = (ScriptRunLogRow)this.NewRow();

            try
            {
                newRow.BuildFileName      = BuildFileName;
                newRow.ScriptFileName     = ScriptFileName;
                newRow.ScriptId           = ScriptId;
                newRow.ScriptFileHash     = ScriptFileHash;
                newRow.CommitDate         = CommitDate;
                newRow.Sequence           = Sequence;
                newRow.UserId             = UserId;
                newRow.AllowScriptBlock   = AllowScriptBlock;
                newRow.AllowBlockUpdateId = AllowBlockUpdateId;
                newRow.ScriptText         = ScriptText;
                newRow.Tag = Tag;
                this.Rows.Add(newRow);
            }catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: ScriptRunLog.AddScriptRunLogRow(string,string,System.Guid,string,DateTime,int,string,bool,string,string,string) Method", e);
            }
            return(true);
        }
Exemplo n.º 3
0
 public bool SyncRowValues(ScriptRunLogRow SourceRow)
 {
     return(SyncRowValues((DataRow)SourceRow));
 }
Exemplo n.º 4
0
 public void RemoveScriptRunLogRow(ScriptRunLogRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 5
0
 public void AddScriptRunLogRow(ScriptRunLogRow row)
 {
     this.Rows.Add(row);
 }