public ExcelService( IArquivoExcelRepository arquivoExcelRepository, ILinhaArquivoExcelRepository linhaArquivoExcel, IUnitOfWork unitOfWork) { this._unitOfWork = unitOfWork; this._linhaArquivoExcel = linhaArquivoExcel; this._arquivoExcelRepository = arquivoExcelRepository; }
public ArquivoExcelController(IArquivoExcelRepository repository, IExcelService service) { this._repository = repository; this._service = service; }