This commit is contained in:
2020-03-07 23:00:11 +01:00
committed by smuddy
parent ccd91aa81c
commit d68cd590ad
57 changed files with 2012 additions and 3489 deletions

View File

@@ -0,0 +1,18 @@
import {Injectable} from '@angular/core';
import {ShowDataService} from './show-data.service';
import {Show} from './show';
@Injectable({
providedIn: 'root'
})
export class ShowService {
public SHOW_TYPE = ['praise', 'worship', 'homegroup', 'prayergroup'];
constructor(private showDataService: ShowDataService) {
}
public async new(data: Partial<Show>): Promise<string> {
return await this.showDataService.add(data);
}
}