コード例 #1
0
 public RsvpController(
     IRsvpService rsvpService,
     IMapper mapper)
 {
     _rsvpService = rsvpService;
     _mapper      = mapper;
 }
コード例 #2
0
 public RsvpController(IRsvpService rsvpService)
 {
     this.rsvpService = rsvpService;
 }
コード例 #3
0
 public MeetupsController(IRsvpService rsvpService)
 {
     _rsvpService = rsvpService;
 }