public SupportController(ISupporterService supporterService, IMapper mapper, IUserService userService, IPlacardService placardService)
 {
     _supporterService = supporterService;
     _mapper           = mapper;
     _placardService   = placardService;
     _userService      = userService;
 }
Beispiel #2
0
 public PlacardController(IPlacardService placardService, IMapper mapper, IUserService userService)
 {
     _placardService = placardService;
     _mapper         = mapper;
     _userService    = userService;
 }