view UnitTests/CS/JointureTests/MusicDB.cs @ 7:99cd4f3947d8

Закомментированы строки мешающие добавлению авиа дежурств.
author nickolay
date Fri, 27 Oct 2017 18:26:29 +0300
parents f990fcb411a9
children
line wrap: on
line source

using BLToolkit.Data;
using BLToolkit.Data.Linq;

namespace UnitTests.CS.JointureTests
{
    public class MusicDB : DbManager
    {
        public Table<Title> Title { get { return GetTable<Title>(); } }
        public Table<Artist2> Artist2 { get { return GetTable<Artist2>(); } }
    }
}