This commit is contained in:
wangshiming
2021-12-07 16:27:41 +08:00
parent 94fe5ffaae
commit 69ff7dc306
8 changed files with 407 additions and 1 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);
}
}