public DesignEditorStratum(CruiseDAL.DataObjects.StratumDO st)
     : base(st)
 {
 }
 public Plot3PPNT(CruiseDAL.DAL dal)
     : base(dal)
 {
 }
 public System.Windows.Forms.DialogResult ShowEditTreeDefault(CruiseDAL.DataObjects.TreeDefaultValueDO tdv)
 {
     throw new NotImplementedException();
 }
 public void ShowLogsView(CruiseDAL.DataObjects.StratumDO stratum, TreeVM tree)
 {
     throw new NotImplementedException();
 }
 public void ShowDataEntry(CruiseDAL.DataObjects.CuttingUnitDO unit)
 {
     throw new NotImplementedException();
 }
 public System.Windows.Forms.DialogResult ShowEditSampleGroup(CruiseDAL.DataObjects.SampleGroupDO sg, bool allowEdit)
 {
     throw new NotImplementedException();
 }
 public abstract System.Windows.Forms.DialogResult ShowEditTreeDefault(CruiseDAL.DataObjects.TreeDefaultValueDO tdv);
 public TreeDefaultValueDO ShowAddPopulation(CruiseDAL.DataObjects.SampleGroupDO sg)
 {
     throw new NotImplementedException();
 }
 public abstract System.Windows.Forms.DialogResult ShowEditSampleGroup(CruiseDAL.DataObjects.SampleGroupDO sg, bool allowEdit);
 public abstract CruiseDAL.DataObjects.TreeDefaultValueDO ShowAddPopulation(CruiseDAL.DataObjects.SampleGroupDO sg);
 public CruiseDAL.DataObjects.SampleGroupDO CreateNewSampleGroup(CruiseDAL.DataObjects.StratumDO stratum)
 {
     throw new NotImplementedException();
 }
 public void PopulateData(CruiseDAL.DAL dal)
 {
     if (this._countCN != 0L)
     {
         this.Count = dal.ReadSingleRow<CountTreeVM>(this._countCN);
     }
     if (this._treeCN != 0L)
     {
         this.TreeRecord = dal.ReadSingleRow<TreeVM>(this._treeCN);
     }
     if (this._treeEstCN != 0L)
     {
         this.TreeEstimate = dal.ReadSingleRow<TreeEstimateDO>(this._treeEstCN);
     }
 }
 public FixCNTPlot(CruiseDAL.DAL ds)
     : base(ds)
 {
 }