You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemmionic5/Mohem/src/app/offersdiscount/home/home.component.ts

20 lines
599 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { CommonService } from 'src/app/hmg-common/services/common/common.service';
import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
})
export class HomeComponent implements OnInit {
segment: any = '1';
constructor(public ts: TranslatorService, public cs: CommonService,) { }
ngOnInit() { }
openDetails() {
this.cs.navigateForward('/offersdiscount/offer-details');
}
}