change entity names

This commit is contained in:
2026-02-08 09:18:20 +03:30
parent 6be6a66079
commit 9a7010dcea
180 changed files with 2751 additions and 2513 deletions
@@ -1,5 +1,5 @@
import { Injectable } from '@nestjs/common';
import { CacheService } from '../../utils/cache.service';
import { CacheService } from '../../../utils/cache.service';
import { Cart } from '../interfaces/cart.interface';
@Injectable()
@@ -10,7 +10,7 @@ export class CartRepository {
constructor(private readonly cacheService: CacheService) {}
/**
* Get cart by user and restaurant
* Get cart by user and shop
*/
async findByUserAndRestaurant(userId: string, restaurantId: string): Promise<Cart | null> {
const cacheKey = this.getCacheKey(userId, restaurantId);