コード例 #1
0
 public MessageController(IMessageService messageService, ITokenService tokenService, IUserService userService, IPortalMessageService portalMessageService, IMapper mapper)
 {
     _messageService       = messageService;
     _tokenService         = tokenService;
     _userService          = userService;
     _portalMessageService = portalMessageService;
     _mapper = mapper;
 }
コード例 #2
0
 public HomeController(IWeatherService weatherService, IUserService userService, IGateUsageService gateUsageService, IMapper mapper, IChartService chartService, IPortalMessageService portalMessageService)
 {
     _weatherService       = weatherService;
     _userService          = userService;
     _gateUsageService     = gateUsageService;
     _mapper               = mapper;
     _chartService         = chartService;
     _portalMessageService = portalMessageService;
 }