Exemplo n.º 1
0
        public TextDataMapper(TextDataWriter writer)
        {
            if (writer == null)
            {
                throw new ArgumentNullException("writer");
            }

            _writer = writer;
        }
Exemplo n.º 2
0
		public TextDataMapper(TextDataWriter writer)
		{
			if (writer == null) throw new ArgumentNullException("writer");

			_writer = writer;
		}
Exemplo n.º 3
0
		public TextDataListMapper(TextDataWriter writer)
			: this(new TextDataMapper(writer))
		{
		}
Exemplo n.º 4
0
 public TextDataListMapper(TextDataWriter writer)
     : this(new TextDataMapper(writer))
 {
 }