public VegetationSurveyVM(VegetationCommunityTypeDO DO)
 {
     this.VegetationCommunityTypeID = DO.VegetationCommunityTypeID;
     this.VegetationCommunityType = DO.VegetationCommunityType;
     this.PermitKey = DO.PermitKey;
     this.Acres = DO.Acres;
 }
        public VegetationCommunityTypeDO GetDataObject()
        {
            VegetationCommunityTypeDO data = new VegetationCommunityTypeDO()
            {
                VegetationCommunityTypeID = this.VegetationCommunityTypeID,
                VegetationCommunityType = this.VegetationCommunityType,
                PermitKey = this.PermitKey,
                Acres = this.Acres

            };

            return data;
        }