public ReChecksController( IReCheckService service, ICheckSheetEntryService checkSheetEntryService ) { _service = service ?? throw new ArgumentNullException(nameof(service)); _checkSheetEntryService = checkSheetEntryService ?? throw new ArgumentNullException(nameof(checkSheetEntryService)); }
public CheckSheetEntryController(ICheckSheetEntryService service) { _service = service ?? throw new ArgumentNullException(nameof(service)); }