Example #1
0
 public NfeRepository(ArquiveiContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public NfesController(ArquiveiContext context, ArquiveiService arquiveiService)
 {
     _context         = context ?? throw new ArgumentNullException(nameof(context));
     _arquiveiService = arquiveiService ?? throw new ArgumentNullException(nameof(arquiveiService));
 }