Esempio n. 1
0
		public void SetValues(RegressionDO obj)
		{
			if(obj == null) { return; }
			rVolume = obj.rVolume;
			rVolType = obj.rVolType;
			rSpeices = obj.rSpeices;
			rProduct = obj.rProduct;
			rLiveDead = obj.rLiveDead;
			CoefficientA = obj.CoefficientA;
			CoefficientB = obj.CoefficientB;
			CoefficientC = obj.CoefficientC;
			TotalTrees = obj.TotalTrees;
			MeanSE = obj.MeanSE;
			Rsquared = obj.Rsquared;
			RegressModel = obj.RegressModel;
			rMinDbh = obj.rMinDbh;
			rMaxDbh = obj.rMaxDbh;
		}
Esempio n. 2
0
		public RegressionDO(RegressionDO obj) : this()
		{
		    SetValues(obj);
		}