public LunchController(
     ILunchService lunchService,
     IMapper mapper)
 {
     _lunchService = lunchService;
     _mapper       = mapper;
 }
예제 #2
0
 public LunchController(ILunchService lunchService)
 {
     _lunchService = lunchService;
 }
 public LunchController(ILunchService lunchService,
                        IAppRequestInfo appRequestInfo)
 {
     _appRequestInfo = appRequestInfo;
     _lunchService   = lunchService;
 }