mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 09:35:44 -05:00
13 lines
293 B
C#
13 lines
293 B
C#
using System.Data.Linq;
|
|
|
|
namespace WeatherService.Data
|
|
{
|
|
public class DatabaseContext : DataContext
|
|
{
|
|
public Table<DeviceData> DeviceTable;
|
|
public Table<ReadingData> ReadingTable;
|
|
|
|
public DatabaseContext(string databaseFile) : base(databaseFile) { }
|
|
}
|
|
}
|