2020-01-14 13:41:28 +01:00
|
|
|
import { Component } from '@angular/core';
|
2020-06-19 08:43:22 +02:00
|
|
|
import {LoginService} from './services/login.service';
|
|
|
|
|
|
|
|
// TODO: add multiple samples at once
|
|
|
|
// TODO: guess properties from material name
|
|
|
|
// TODO: validation: VZ, Humidity: min/max value, DPT: filename
|
|
|
|
// TODO: filter by not completely filled/no measurements
|
|
|
|
// TODO: account
|
2020-01-14 13:41:28 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: ['./app.component.scss']
|
|
|
|
})
|
|
|
|
export class AppComponent {
|
2020-05-22 12:52:17 +02:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
public loginService: LoginService
|
|
|
|
) {
|
|
|
|
}
|
2020-01-14 13:41:28 +01:00
|
|
|
}
|