Exemplo n.º 1
0
 public NfeRepository(ArquiveiContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Exemplo n.º 2
0
 public NfesController(ArquiveiContext context, ArquiveiService arquiveiService)
 {
     _context         = context ?? throw new ArgumentNullException(nameof(context));
     _arquiveiService = arquiveiService ?? throw new ArgumentNullException(nameof(arquiveiService));
 }