예제 #1
0
 public ChurrascosController(IChurrascoService churrascoService)
 {
     _churrascoService = churrascoService ??
                         throw new ArgumentNullException();
 }
예제 #2
0
 public ChurrascosController(IChurrascoService churrascoService, IParticipanteService participanteService)
 {
     _churrascoService = churrascoService;
 }