import { Injectable } from "@angular/core";
@Injectable({
providedIn: "root",
})
export class ServiceService {
Sailors = [
{
id: 22,
name: "Dustin",
rating: 7,
},
{
id: 29,
name: "Brutus",
rating: 1,
},
{
id: 31,
name: "Lubber",
rating: 8,
},
{
id: 32,
name: "Andy",
rating: 8,
},
{
id: 58,
name: "Rusty",
rating: 10,
},
{
id: 64,
name: "Horatio",
rating: 7,
},
{
id: 71,
name: "Zorba",
rating: 10,
},
{
id: 74,
name: "Horatio",
rating: 9,
},
];
constructor() { }
getData() {
return "This is the list of sailors" +
" and their corresponding ratings";
}
}