You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/api/services/service.ref.tsx

8 lines
415 B

import { IExerciceService } from "./exercice/exercice.service.interface";
import { ExerciceStubService } from "./exercice/exercice.service.stub";
import { IUserService } from "./user/user.service.interface";
import { UserStubService } from "./user/user.service.stub";
export const ExerciceServiceRef: IExerciceService = new ExerciceStubService();
export const UserServiceRef: IUserService = new UserStubService();