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

            try
            {
                this.Rows.Add(newRow);
            }
            catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: ServerSizeSummary.Fill(string) Method", e);
            }
            return(true);
        }
Exemplo n.º 2
0
        public bool AddServerSizeSummaryRow(String DatabaseName, String Location, Int64 DataSize, DateTime DateCreated)
        {
            ServerSizeSummaryRow newRow = (ServerSizeSummaryRow)this.NewRow();

            try
            {
                newRow.DatabaseName = DatabaseName;
                newRow.Location     = Location;
                newRow.DataSize     = DataSize;
                newRow.DateCreated  = DateCreated;
                this.Rows.Add(newRow);
            }catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: ServerSizeSummary.AddServerSizeSummaryRow(String,String,Int64,DateTime) Method", e);
            }
            return(true);
        }
Exemplo n.º 3
0
 public bool SyncRowValues(ServerSizeSummaryRow SourceRow)
 {
     return(SyncRowValues((DataRow)SourceRow));
 }
Exemplo n.º 4
0
 public void RemoveServerSizeSummaryRow(ServerSizeSummaryRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 5
0
 public void AddServerSizeSummaryRow(ServerSizeSummaryRow row)
 {
     this.Rows.Add(row);
 }