Untitled

Anonymous
plain_text
07/24/2024 8:51 AM
424 B
13
Indexable
 // Get all brand names (slug and id)
  getAllBrandNames = async (req: Request, res: Response) => {
    await this.brandService.getAllBrandNames(req, res);
  };

  // Get unique brand by ID
  getUniqueBrand = async (req: Request, res: Response) => {
    await this.brandService.getUniqueBrand(req, res);
  };
Editor is loading...
Leave a Comment