private BackupLocationInfo RowToLocation(DataRow locationRow) { BackupLocationInfo thisLocation = new BackupLocationInfo(); thisLocation.LocationEntryID = (int)locationRow["LocationEntryID"]; thisLocation.SourceLabel = locationRow["SourceLabel"].ToString(); thisLocation.EncryptionCheckValue = locationRow["EncryptionCheckValue"].ToString(); thisLocation.BackupPath = locationRow["BackupPath"].ToString(); return(thisLocation); }
private BackupLocationInfo RowToLocation(DataRow locationRow) { BackupLocationInfo thisLocation = new BackupLocationInfo(); thisLocation.LocationEntryID = (int)locationRow["LocationEntryID"]; thisLocation.SourceLabel = locationRow["SourceLabel"].ToString(); thisLocation.EncryptionCheckValue = locationRow["EncryptionCheckValue"].ToString(); thisLocation.BackupPath = locationRow["BackupPath"].ToString(); return thisLocation; }