public UserController(IUserService userService,
                       IAppRequestInfo appRequestInfo)
 {
     _appRequestInfo = appRequestInfo;
     _userService    = userService;
 }
 public TopFiveController(ITopFiveService topFiveService,
                          IAppRequestInfo appRequestInfo)
 {
     _appRequestInfo = appRequestInfo;
     _topFiveService = topFiveService;
 }
 public LunchController(ILunchService lunchService,
                        IAppRequestInfo appRequestInfo)
 {
     _appRequestInfo = appRequestInfo;
     _lunchService   = lunchService;
 }