comparison UnitTests/Linq/ITestDataContext.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
1 using System;
2
3 using BLToolkit.Data.Linq;
4
5 namespace Data.Linq
6 {
7 using Model;
8
9 public interface ITestDataContext : IDataContext
10 {
11 Table<Person> Person { get; }
12 Table<Patient> Patient { get; }
13 Table<Doctor> Doctor { get; }
14 Table<Parent> Parent { get; }
15 Table<Parent1> Parent1 { get; }
16 Table<IParent> Parent2 { get; }
17 Table<Parent4> Parent4 { get; }
18 Table<Parent5> Parent5 { get; }
19 Table<ParentInheritanceBase> ParentInheritance { get; }
20 Table<ParentInheritanceBase2> ParentInheritance2 { get; }
21 Table<ParentInheritanceBase3> ParentInheritance3 { get; }
22 Table<ParentInheritanceBase4> ParentInheritance4 { get; }
23 Table<ParentInheritance1> ParentInheritance1 { get; }
24 Table<ParentInheritanceValue> ParentInheritanceValue { get; }
25 Table<Child> Child { get; }
26 Table<GrandChild> GrandChild { get; }
27 Table<GrandChild1> GrandChild1 { get; }
28 Table<LinqDataTypes> Types { get; }
29 Table<LinqDataTypes2> Types2 { get; }
30 Table<TestIdentity> TestIdentity { get; }
31 }
32 }