public ChurrascosController(IChurrascoService churrascoService)
 {
     _churrascoService = churrascoService ??
                         throw new ArgumentNullException();
 }
Esempio n. 2
0
 public ChurrascosController(IChurrascoService churrascoService, IParticipanteService participanteService)
 {
     _churrascoService = churrascoService;
 }