Exemplo n.º 1
0
 public AccountStatementImportFileService(
     IAccountStatementImportFileRepository accountStatementImportFileRepository,
     IAccountService accountService,
     IMapper mapper,
     IAccountStatementService accountStatementService,
     IOperationTransverseAsifService operationTransverseAsifService,
     IOperationTransverseAsService operationTransverseAsService,
     ReferentialService referentialService
     )
 {
     _accountStatementImportFileRepository = accountStatementImportFileRepository;
     _mapper                         = mapper;
     _accountService                 = accountService;
     _accountStatementService        = accountStatementService;
     _operationTransverseAsifService = operationTransverseAsifService;
     _operationTransverseAsService   = operationTransverseAsService;
     _referentialService             = referentialService;
 }
 public AccountStatementService(
     IMapper mapper,
     IGMapAddressService gMapAddressService,
     IAccountStatementRepository accountStatementRepository,
     IAccountStatementPlanService accountStatementPlanService,
     IOperationTransverseAsService operationTransverseAsService,
     IOperationDetailService operationDetailService,
     ReferentialService referentialService
     )
 {
     _mapper                       = mapper;
     _gMapAddressService           = gMapAddressService;
     _accountStatementRepository   = accountStatementRepository;
     _accountStatementPlanService  = accountStatementPlanService;
     _operationTransverseAsService = operationTransverseAsService;
     _operationDetailService       = operationDetailService;
     _referentialService           = referentialService;
 }