Example #1
0
 public MenuRepository(CrazyFoodContext context)
 {
     this._context = context;
 }
Example #2
0
 public ReviewRepository(CrazyFoodContext context)
 {
     this._context = context;
 }
Example #3
0
 public UserRepository(CrazyFoodContext context, IMapper mapper)
 {
     this._context = context;
     this._mapper  = mapper;
 }
 public RestaurantRepositary(CrazyFoodContext context)
 {
     this._context = context;
 }
Example #5
0
 public FollowRepository(CrazyFoodContext context,
                         IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #6
0
 public OrderRepository(CrazyFoodContext context)
 {
     this._context = context;
 }
Example #7
0
 public UnitOfWork(CrazyFoodContext context)
 {
     this._context = context;
 }
Example #8
0
 public DishRepository(CrazyFoodContext context)
 {
     this._context = context;
 }