票务管理配置

This commit is contained in:
Taric Xin
2021-12-03 15:35:24 +08:00
parent 24895e552e
commit f704037fe4
23 changed files with 192 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from 'src/app/shared/services';
@Injectable({
providedIn: 'root'
})
export class TicketService extends BaseService {
constructor(public injector: Injector) {
super(injector);
}
}