Exemplo n.º 1
0
 public RsvpController(
     IRsvpService rsvpService,
     IMapper mapper)
 {
     _rsvpService = rsvpService;
     _mapper      = mapper;
 }
Exemplo n.º 2
0
 public RsvpController(IRsvpService rsvpService)
 {
     this.rsvpService = rsvpService;
 }
Exemplo n.º 3
0
 public MeetupsController(IRsvpService rsvpService)
 {
     _rsvpService = rsvpService;
 }