45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
import { IMovie } from './movie';
|
|
|
|
@Injectable()
|
|
export class MovieService {
|
|
getMovies(): IMovie[] {
|
|
return [
|
|
{
|
|
hero: 'Celeritas',
|
|
imageurl: 'images/hero.png',
|
|
movieId: 1,
|
|
mpaa: 'pg-13',
|
|
releaseDate: '2015-12-19T00:00:00',
|
|
title: 'Celeritas Reigns',
|
|
price: 12.95,
|
|
starRating: 4.925,
|
|
approvalRating: .97
|
|
},
|
|
{
|
|
hero: 'Mr. Nice',
|
|
imageurl: 'images/villain.png',
|
|
movieId: 2,
|
|
mpaa: 'pg-13',
|
|
releaseDate: '2015-12-18T00:00:00',
|
|
title: 'No More Mr. Nice Guy',
|
|
price: 14.95,
|
|
starRating: 4.6,
|
|
approvalRating: .94
|
|
},
|
|
{
|
|
hero: 'Angular',
|
|
imageurl: 'images/ng-logo.png',
|
|
movieId: 3,
|
|
mpaa: 'pg-13',
|
|
releaseDate: '2015-12-17T00:00:00',
|
|
title: 'Angular to the Rescue',
|
|
price: 15.95,
|
|
starRating: 4.98,
|
|
approvalRating: .9995
|
|
}
|
|
];
|
|
}
|
|
}
|