Untitled

 avatar
unknown
plain_text
a year ago
316 B
5
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