18 lines
424 B
TypeScript
18 lines
424 B
TypeScript
import { BaseLogic, Methods } from "@logic/Base.logic";
|
|
import { Inject } from "@ann/Ioc.annotation";
|
|
import { UserServiceImpl } from "@impl/User.service.impl";
|
|
|
|
export class AuthenticationLogic extends BaseLogic implements Methods {
|
|
|
|
@Inject()
|
|
public readonly UserServiceImpl!: UserServiceImpl;
|
|
|
|
constructor(point: any) {
|
|
super();
|
|
this.VueApp = point;
|
|
}
|
|
|
|
public async StartUp(): Promise<void> {
|
|
|
|
}
|
|
} |