public OrdersController(IOrderService orderService,
                         IOrderMapper orderMapper,
                         IFcmService fcmService,
                         IOrdUserService ordUserService,
                         IRestaurantService restService)
 {
     _ordService     = orderService;
     _ordMapper      = orderMapper;
     _fcmService     = fcmService;
     _ordUserService = ordUserService;
     _restService    = restService;
 }
Exemple #2
0
 public UsersController(IOrdUserService ordUserService)
 {
     _userService = ordUserService;
 }