duck-booking-tool-front/app/in-memory-data.service.ts
Gergely Polonkai 3e02eb4abb Update for the final version of Angular2
It lost some functionality, but it was never put to use.
2016-10-28 05:19:23 +02:00

21 lines
455 B
TypeScript

import { InMemoryDbService } from "angular-in-memory-web-api";
export class InMemoryDataService implements InMemoryDbService {
createDb() {
let ducks = [
{
id: 1,
name: "Fastfingers",
color: "#ee6aa7"
},
{
id: 2,
name: "Lady Pickett",
color: "#8b8b00"
}
];
return {ducks};
}
}