Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / System.Web.DynamicData / Test / Common / FooSettableDefaults.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 FooSettableDefaults
9         {
10                 public string Column1 { get; set; }
11                 public int Column2 { get; set; }
12                 public string PrimaryKeyColumn1 { get; set; }
13                 public string PrimaryKeyColumn2 { get; set; }
14                 public string PrimaryKeyColumn3 { get; set; }
15
16                 public FooSettableDefaults ()
17                         : this ("primary one", "primary two", "primary three")
18                 {
19                 }
20
21                 public FooSettableDefaults (string p1, string p2, string p3)
22                 {
23                         Column1 = "hello";
24                         Column2 = 123;
25                         PrimaryKeyColumn1 = p1;
26                         PrimaryKeyColumn2 = p2;
27                         PrimaryKeyColumn3 = p3;
28                 }
29         }
30 }