Catkitkatars / magazine

0 stars 0 forks source link

Создать модель Товара и вывести его на главной странице #2

Open EgorBanin opened 9 months ago

EgorBanin commented 9 months ago

Добавить модель товара (пока без бд)

class Item {
    - dto DTO
    + DTO() DTO
}

class DTO {
    + id int
    + title string
    + description string
    + price int
}

Item *-- DTO

Создать Товар с произвольными свойствами в контроллере главной страницы и вывести его в простеньком шаблоне.

Catkitkatars commented 8 months ago

Done