Esempio n. 1
0
        public RawObservationsString()
        {
            this.version   = UnknownString;
            this.location  = UnknownString;
            this.date      = DefaultDateString;
            this.length    = UnknownString;
            this.intensity = UnknownString;
            this.timeOfDay = UnknownString;
            this.weather   = UnknownString;

            this.habitats = new HabitatsString();
            this.species  = new TypeString();
            this.heard    = new TypeString();
        }
Esempio n. 2
0
        /// <summary>
        /// Initialises a new instance of the <see cref="RawObservations"/> class.
        /// </summary>
        public RawObservations()
        {
            this.version   = 3;
            this.location  = string.Empty;
            this.date      = string.Empty;
            this.notes     = string.Empty;
            this.length    = ObservationLength.Unspecified;
            this.intensity = ObservationIntensity.NotRecorded;
            this.timeOfDay = ObservationTimeOfDay.NotRecorded;
            this.weather   = ObservationWeather.NotRecorded;

            this.habitats = new RawHabitats();
            this.species  = new TypeString();
            this.heard    = new TypeString();
        }