Browse Source

docs: remove booksType from tutorial part 2

pull/4857/head
Arman Ozak 6 years ago
parent
commit
ca08dd77e5
  1. 4
      docs/en/Tutorials/Part-2.md

4
docs/en/Tutorials/Part-2.md

@ -474,7 +474,7 @@ Open the `/src/app/book/book.component.ts` file and replace the content as below
```js
import { ListService, PagedResultDto } from '@abp/ng.core';
import { Component, OnInit } from '@angular/core';
import { BookDto, BookType } from './models';
import { BookDto } from './models';
import { BookService } from './services';
@Component({
@ -486,8 +486,6 @@ import { BookService } from './services';
export class BookComponent implements OnInit {
book = { items: [], totalCount: 0 } as PagedResultDto<BookDto>;
booksType = BookType;
constructor(public readonly list: ListService, private bookService: BookService) {}
ngOnInit() {

Loading…
Cancel
Save