2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Web.DynamicData / Test / Common / Baz.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace MonoTests.Common
7 {
8         class Baz
9         {
10                 // DO NOT change the order of properties - tests depend on it
11                 public int Column1 { get; set; }
12                 public int PrimaryKeyColumn1 { get; set; }
13                 public string PrimaryKeyColumn2 { get; set; }
14                 public bool PrimaryKeyColumn3 { get; set; }
15
16                 public Baz ()
17                 {
18                         Column1 = 123;
19                         PrimaryKeyColumn1 = 456;
20                         PrimaryKeyColumn2 = "primary key value";
21                         PrimaryKeyColumn3 = true;
22                 }
23         }
24 }