private void button1_Click(object sender, EventArgs e) { var client = new Client {FirstName = "Max", LastName = "Nikitin"}; client.Accounts.Add(new Account("KZR", "12345")); client.Accounts.Add(new Account("EUR", "23456")); var t = new RuntimeTextTemplate1(client); richTextBox1.Text = t.TransformText(); }
public RuntimeTextTemplate1(Client client) { _client = client; }