2016-07-09 15:08:36 +02:00
|
|
|
import {Injectable} from "@angular/core";
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class NotificationService {
|
|
|
|
|
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
constructor() {
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public showException(message: string) {
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public showError(message: string) {
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public showWarn(message: string) {
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public showInfo(message: string) {
|
2016-07-09 15:08:36 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-07-09 15:08:36 +02:00
|
|
|
|
|
|
|
}
|