[netcore] Remove local copy of static alc resolve methods
[mono-project.git] / mcs / class / System.Web.DynamicData / Test / Common / FooWithDefaults.cs
blobdc0b1963487a86a4afaf1583d2d89d080cc840f2
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Data.Linq.Mapping;
5 using System.Text;
7 namespace MonoTests.Common
9 class FooWithDefaults
11 public string Column1 { get; set; }
12 public int Column2 { get; set; }
14 public string PrimaryKeyColumn1 { get; set; }
15 public int PrimaryKeyColumn2 { get; set; }
16 public bool PrimaryKeyColumn3 { get; set; }
18 public string ForeignKeyColumn1 { get; set; }
19 public int ForeignKeyColumn2 { get; set; }
20 public bool ForeignKeyColumn3 { get; set; }
22 public FooWithDefaults ()
24 Column1 = "hello";
25 Column2 = 123;
27 PrimaryKeyColumn1 = "primary key value";
28 PrimaryKeyColumn2 = 456;
29 PrimaryKeyColumn3 = true;
31 ForeignKeyColumn1 = "foreign key";
32 ForeignKeyColumn2 = 789;
33 ForeignKeyColumn3 = true;