global.ts 222 Bytes
export class GlobalService {
  resourceBaseUrl: string = "";
  hostURL: string = ""; 
  constructor() {
    this.hostURL = window.location.hostname;
    this.resourceBaseUrl = "http://192.168.86.13:92/DiscountCode";
  }
}