コード例 #1
0
 public ClientContractService(IClientContractRepository clientContractRepository, IDealRepository dealRepository,
                              IClientContractIndicatorService clientContractIndicatorService)
 {
     this.clientContractRepository       = clientContractRepository;
     this.dealRepository                 = dealRepository;
     this.clientContractIndicatorService = clientContractIndicatorService;
 }
コード例 #2
0
        public ClientContractIndicatorService(IClientContractRepository clientContractRepository, ISaleWaybillRepository saleWaybillRepository, IDealIndicatorService dealIndicatorService)
        {
            this.clientContractRepository = clientContractRepository;
            this.saleWaybillRepository    = saleWaybillRepository;

            this.dealIndicatorService = dealIndicatorService;
        }
コード例 #3
0
ファイル: DealService.cs プロジェクト: dmozhnov/EmpireERP
        public DealService(IDealRepository dealRepository, IClientContractRepository clientContractRepository, ITaskRepository taskRepository,
                           IDealIndicatorService dealIndicatorService, IExpenditureWaybillIndicatorService expenditureWaybillIndicatorService,
                           IStorageService storageService, IClientContractIndicatorService clientContractIndicatorService)
        {
            this.dealRepository           = dealRepository;
            this.clientContractRepository = clientContractRepository;
            this.taskRepository           = taskRepository;

            this.dealIndicatorService = dealIndicatorService;
            this.expenditureWaybillIndicatorService = expenditureWaybillIndicatorService;
            this.storageService = storageService;
            this.clientContractIndicatorService = clientContractIndicatorService;
        }
コード例 #4
0
        public DealIndicatorService(IDealRepository dealRepository, IExpenditureWaybillRepository expenditureWaybillRepository,
                                    IReturnFromClientWaybillRepository returnFromClientWaybillRepository, IDealPaymentDocumentRepository dealPaymentDocumentRepository,
                                    IClientRepository clientRepository, IClientContractRepository clientContractRepository, IAccountOrganizationRepository accountOrganizationRepository,
                                    IClientOrganizationRepository clientOrganizationRepository, IEconomicAgentRepository economicAgentRepository, ISaleWaybillIndicatorService saleWaybillIndicatorService,
                                    IExpenditureWaybillIndicatorService expenditureWaybillIndicatorService, IAcceptedSaleIndicatorService acceptedSaleIndicatorService,
                                    IPermissionDistributionService permissionDistributionService, ITeamRepository teamRepository)
        {
            this.dealRepository = dealRepository;
            this.expenditureWaybillRepository      = expenditureWaybillRepository;
            this.clientRepository                  = clientRepository;
            this.clientContractRepository          = clientContractRepository;
            this.accountOrganizationRepository     = accountOrganizationRepository;
            this.clientOrganizationRepository      = clientOrganizationRepository;
            this.economicAgentRepository           = economicAgentRepository;
            this.returnFromClientWaybillRepository = returnFromClientWaybillRepository;
            this.dealPaymentDocumentRepository     = dealPaymentDocumentRepository;
            this.teamRepository = teamRepository;

            this.saleWaybillIndicatorService        = saleWaybillIndicatorService;
            this.expenditureWaybillIndicatorService = expenditureWaybillIndicatorService;
            this.acceptedSaleIndicatorService       = acceptedSaleIndicatorService;
            this.permissionDistributionService      = permissionDistributionService;
        }