Ejemplo n.º 1
0
 public ExcelService(
     IArquivoExcelRepository arquivoExcelRepository,
     ILinhaArquivoExcelRepository linhaArquivoExcel,
     IUnitOfWork unitOfWork)
 {
     this._unitOfWork             = unitOfWork;
     this._linhaArquivoExcel      = linhaArquivoExcel;
     this._arquivoExcelRepository = arquivoExcelRepository;
 }
Ejemplo n.º 2
0
 public LinhaArquivoExcelController(ILinhaArquivoExcelRepository repository)
 {
     this._repository = repository;
 }