public UserLunchController(
     IUserLunchService userLunchService,
     IMapper mapper)
 {
     _userLunchService = userLunchService;
     _mapper           = mapper;
 }
예제 #2
0
 public UserLunchController(IUserService userService, IUserLunchService userLunchService,
                            IOrderService orderService, UserLunchValidator validator) : base(userService)
 {
     _userLunchService = userLunchService;
     _userService      = userService;
     _orderService     = orderService;
     _validator        = validator;
 }
예제 #3
0
 public OrderService(Context context, IMenuService menuService, IUserLunchService userLunchService, IEmailService emailService, IConfigurationsProvider configurationsProvider)
 {
     _context                = context;
     _menuService            = menuService;
     _userLunchService       = userLunchService;
     _emailService           = emailService;
     _configurationsProvider = configurationsProvider;
 }
 public UserLunchController(IUserService userService, IUserLunchService userLunchService) : base(userService)
 {
     _userLunchService = userLunchService;
     _userService      = userService;
 }