コード例 #1
0
 public ChurrascosController(IChurrascoService churrascoService)
 {
     _churrascoService = churrascoService ??
                         throw new ArgumentNullException();
 }
コード例 #2
0
 public ChurrascosController(IChurrascoService churrascoService, IParticipanteService participanteService)
 {
     _churrascoService = churrascoService;
 }