Olimpiadas-INET-2024-Escuela-Tecnica-21 / fase1_backend

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
24 occurrences in this check
Documentation comment not found for class Seller
1import { Entity } from './entity.js';
2
3class Seller extends Entity {4}
5
6export default Seller
Documentation comment not found for class SalesManager
1import { Entity } from './entity.js';
2
3class SalesManager extends Entity {4}
5
6export default SalesManager
Documentation comment not found for class SellerRepository
124    }
125}
126
127class SellerRepository extends Repository {128    static #instance = undefined
129
130    constructor() {
Documentation comment not found for class SalesManagerRepository
105    }
106}
107
108class SalesManagerRepository extends Repository {109    static #instance = undefined
110
111    constructor() {
Documentation comment not found for class ProfileRepository
 86    }
 87}
 88
 89class ProfileRepository extends Repository { 90    static #instance = undefined
 91
 92    constructor() {
Documentation comment not found for class ProductRepository
 67    }
 68}
 69
 70class ProductRepository extends Repository { 71    static #instance = undefined
 72
 73    constructor() {
Documentation comment not found for class OrderRepository
 48    }
 49}
 50
 51class OrderRepository extends Repository { 52    static #instance = undefined
 53
 54    constructor() {
Documentation comment not found for class ClientRepository
 29    async delete(){}
 30}
 31
 32class ClientRepository extends Repository { 33    static #instance = undefined
 34
 35    constructor() {
Documentation comment not found for method definition delete
 26
 27    async update(){}
 28
 29    async delete(){} 30}
 31
 32class ClientRepository extends Repository {
Documentation comment not found for method definition update
 24
 25    async findOne(){}
 26
 27    async update(){} 28
 29    async delete(){}
 30}
Documentation comment not found for method definition findOne
 22
 23    async findMany(){}
 24
 25    async findOne(){} 26
 27    async update(){}
 28
Documentation comment not found for method definition findMany
 20
 21    async create(data){}
 22
 23    async findMany(){} 24
 25    async findOne(){}
 26
Documentation comment not found for method definition create
 18        console.log(`hello from ${Object.getPrototypeOf(this).constructor.name}`);
 19    }
 20
 21    async create(data){} 22
 23    async findMany(){}
 24
Documentation comment not found for method definition sayHello
 14
 15    }
 16
 17    sayHello() { 18        console.log(`hello from ${Object.getPrototypeOf(this).constructor.name}`);
 19    }
 20
Documentation comment not found for class Profile
1import { Entity } from './entity.js';
2
3class Profile extends Entity {4}
5
6export default Profile
Documentation comment not found for class Product
1import { Entity } from './entity.js';
2
3class Product extends Entity {4}
5
6export default Product
Documentation comment not found for class Order
1import { Entity } from './entity.js';
2
3class Order extends Entity {4}
5
6export default Order
Documentation comment not found for method definition delete
13
14    async update() {}
15
16    async delete() {}17}
Documentation comment not found for method definition update
11
12    async findByID() {}
13
14    async update() {}15
16    async delete() {}
17}
Documentation comment not found for method definition findByID
 9
10    async findMany() {}
11
12    async findByID() {}13
14    async update() {}
15
Documentation comment not found for method definition findMany
 7
 8    async create() {}
 9
10    async findMany() {}11
12    async findByID() {}
13
Documentation comment not found for method definition create
 5        }
 6    }
 7
 8    async create() {} 9
10    async findMany() {}
11
Documentation comment not found for class Entity
 1export default class Entity { 2    constructor() {
 3        if (new.target === Entity) {
 4            throw new Error('Cannot create an instance of Entity because it is an abstract class');
Documentation comment not found for class ClientModel
1import Entity from "./entity.js"
2
3class ClientModel extends Entity {4}
5
6export default ClientModel