introduced table components
[outofuni/tavern2.git] / lib / table_service.dart
1 import 'dart:async';
2 import 'dart:convert';
3
4 import 'package:angular2/core.dart';
5 import 'package:http/browser_client.dart';
6
7 import 'db.dart';
8
9 import 'table.dart';
10
11 @Injectable()
12 class TableService {
13         final BrowserClient _http;
14
15         static const _byroom='_design/tables/_view/byroom';
16         static const _bynum='_design/tables/_view/bynum';
17
18         TableService(this._http);
19 }
20