﻿// 서비스 클래스 
import { Injectable } from '@angular/core';

@Injectable()
export class TechListDataService1 {
    getTechLists() {
        let techLists = [
            { "id": 1, "title": "Angular" },
            { "id": 2, "title": "ASP.NET Core" },
            { "id": 3, "title": "Azure Web App" },
            { "id": 4, "title": "Bootstrap" }
        ];
        return techLists;
    }
}
