public TextDataMapper(TextDataWriter writer)
        {
            if (writer == null)
            {
                throw new ArgumentNullException("writer");
            }

            _writer = writer;
        }
		public TextDataMapper(TextDataWriter writer)
		{
			if (writer == null) throw new ArgumentNullException("writer");

			_writer = writer;
		}
		public TextDataListMapper(TextDataWriter writer)
			: this(new TextDataMapper(writer))
		{
		}
 public TextDataListMapper(TextDataWriter writer)
     : this(new TextDataMapper(writer))
 {
 }