Open VZhyrytskiy opened 5 years ago
Желательно уменьшить количество кода, используя public для параметров конструктора
export class ProductModel implements ProductModelInterface{ name: string; description: string; price: number; category: Category; constructor(name:string, description: string , price:number , category:Category){ this.name = name; this.description = description; this.price = price; this.category = category; } }
addressed in Task2
Желательно уменьшить количество кода, используя public для параметров конструктора