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