global.ts
588 Bytes
export class GlobalService {
resourceBaseUrl: string = "";
DiscountBaseUrl: string = "";
SubscriptionBaseUrl: string = "";
hostURL: string = "";
UserId: number = 6;
UserType: number =1;
AccountType: number = 0;
constructor() {
this.hostURL = window.location.hostname;
this.resourceBaseUrl = "http://192.168.84.242:97/User";
this.DiscountBaseUrl = "http://192.168.84.242:97/DiscountCode";
this.SubscriptionBaseUrl = "http://192.168.84.242:97/SubscriptionPrice";
//this.resourceBaseUrl = "http://qa.beta.interactiveanatomy.com/API/Adminapi/User";
}
}