Example #1
0
        /// <summary>
        /// Parse INPUT data and create new ModelStore object.
        /// </summary>
        /// <param name="wrongInput">Flag signaling weather the INPUT was correct or not.</param>
        public void GetData(TextReader dataReader, out bool wrongInput)
        {
            wrongInput = default(bool);

            this.Nezarka = ModelStore.LoadFrom(dataReader, out wrongInput);
        }