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