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/service/service.ref.tsx

11 lines
632 B

import { ICatalogService } from "./interface/service.interface.catalog";
import { ITrainingService } from "./interface/service.interface.training";
import { IUserService } from "./interface/service.interface.user";
import { CatalogServiceStub } from "./stub/service.stub.catalog";
import { TrainingServiceStub } from "./stub/service.stub.training";
import { UserServiceStub } from "./stub/service.stub.user";
export const CatalogServiceRef: ICatalogService = new CatalogServiceStub();
export const UserServiceRef: IUserService = new UserServiceStub();
export const TrainingServiceRef: ITrainingService = new TrainingServiceStub();