public CheckSheetEntryService(
     QualityCheckSheetsContext context,
     IReCheckService reCheckService
     ) : base(context)
 {
     _context        = context ?? throw new ArgumentNullException(nameof(context));
     _reCheckService =
         reCheckService ?? throw new ArgumentNullException(nameof(reCheckService));
 }
Esempio n. 2
0
 public ReChecksController(
     IReCheckService service,
     ICheckSheetEntryService checkSheetEntryService
     )
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
     _checkSheetEntryService =
         checkSheetEntryService
         ?? throw new ArgumentNullException(nameof(checkSheetEntryService));
 }