global.ts 375 Bytes
export class GlobalService {
  resourceBaseUrl: 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.resourceBaseUrl = "http://qa.beta.interactiveanatomy.com/API/Adminapi/User";

  }
}