public MenuRepository(CrazyFoodContext context) { this._context = context; }
public ReviewRepository(CrazyFoodContext context) { this._context = context; }
public UserRepository(CrazyFoodContext context, IMapper mapper) { this._context = context; this._mapper = mapper; }
public RestaurantRepositary(CrazyFoodContext context) { this._context = context; }
public FollowRepository(CrazyFoodContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public OrderRepository(CrazyFoodContext context) { this._context = context; }
public UnitOfWork(CrazyFoodContext context) { this._context = context; }
public DishRepository(CrazyFoodContext context) { this._context = context; }