public BanquePopulaireImportFileService(
     IAccountStatementImportFileService asifService,
     ReferentialService referentialService
     )
 {
     _asifService        = asifService;
     _referentialService = referentialService;
 }
 public PlanPosteReferenceService(
     IMapper mapper,
     IPlanPosteReferenceRepository planPosteReferenceRepository,
     ReferentialService referentialService
     )
 {
     _mapper = mapper;
     _planPosteReferenceRepository = planPosteReferenceRepository;
     _referentialService           = referentialService;
 }
Esempio n. 3
0
 public AsChartCategorisationService(
     IMapper mapper,
     IAsChartCategorisationRepository asChartCategorisationRepository,
     ReferentialService referentialService
     )
 {
     _mapper = mapper;
     _asChartCategorisationRepository = asChartCategorisationRepository;
     _referentialService = referentialService;
 }
 public CreditAgricoleImportFileService(
     IParameterService parameterService,
     IAccountStatementImportFileService asifService,
     ReferentialService referentialService
     )
 {
     _parameterService   = parameterService;
     _asifService        = asifService;
     _referentialService = referentialService;
 }
 public AsChartEvolutionService(
     IMapper mapper,
     IAsChartEvolutionRepository accountStatementChartRepository,
     IUserCustomOtfService userCustomOtfService,
     ReferentialService referentialService
     )
 {
     _mapper = mapper;
     _accountStatementChartRepository = accountStatementChartRepository;
     _userCustomOtfService            = userCustomOtfService;
     _referentialService = referentialService;
 }
Esempio n. 6
0
        public FilterService(
            IMapper mapper,
            IAccountStatementImportService accountStatementImportService,
            IAccountStatementImportFileService accountStatementImportFileService,
            ReferentialService referentialService

            )
        {
            _mapper = mapper;
            _accountStatementImportService     = accountStatementImportService;
            _accountStatementImportFileService = accountStatementImportFileService;
            _referentialService = referentialService;
        }
Esempio n. 7
0
        //private readonly IAccountStatementService _accountStatementService;

        public AccountStatementPlanService(
            IMapper mapper,
            IVPlanGlobalService vPlanGlobalService,
            IPlanAccountService planAccountService,
            IAccountStatementPlanRepository accountStatementPlanRepository,
            ReferentialService referentialService,
            IPlanService planService
            //IAccountStatementService accountStatementService
            )
        {
            _mapper                         = mapper;
            _vPlanGlobalService             = vPlanGlobalService;
            _accountStatementPlanRepository = accountStatementPlanRepository;
            _planAccountService             = planAccountService;
            _referentialService             = referentialService;
            _planService                    = planService;
            //_accountStatementService = accountStatementService;
        }
Esempio n. 8
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;
 }