public EmployeeClient(IPersonRepository employeeRepository, IEmployeeEntityService employeeEntityService,
                       ICompanyEntityService companyEntityService)
 {
     _employeeRepository    = employeeRepository;
     _employeeEntityService = employeeEntityService;
     _companyEntityService  = companyEntityService;
 }
Exemplo n.º 2
0
 public CompanyClient(ICompanyRepository companyRepository, ICompanyEntityService companyEntityService,
                      IEmployeeEntityService employeeEntityService)
 {
     _companyRepository     = companyRepository;
     _companyEntityService  = companyEntityService;
     _employeeEntityService = employeeEntityService;
 }
 public FeeScheduleClient(IFeeScheduleRepository feeScheduleRepository, IFeeScheduleEntityService feeScheduleEntityService,
                          IAccountEntityService accountEntityService, ICompanyEntityService companyEntityService)
 {
     _feeScheduleRepository    = feeScheduleRepository;
     _feeScheduleEntityService = feeScheduleEntityService;
     _accountEntityService     = accountEntityService;
     _companyEntityService     = companyEntityService;
 }
 public CompaniesManager(ILogger <CompaniesManager> logger, IMQPublisher mqPublisher,
                         ICompanyRepository companyRepository, ICompanyEntityService companyEntityService)
 {
     _log                  = logger;
     _mqPublisher          = mqPublisher;
     _companyRepository    = companyRepository;
     _companyEntityService = companyEntityService;
 }
Exemplo n.º 5
0
 public AccountClient(IAccountRepository accountRepository, IAccountEntityService accountEntityService,
                      ICompanyEntityService companyEntityService, IEmployeeEntityService employeeEntityService,
                      IAddressService addressService, IFeeScheduleService feeScheduleService)
 {
     _accountRepository     = accountRepository;
     _accountEntityService  = accountEntityService;
     _companyEntityService  = companyEntityService;
     _employeeEntityService = employeeEntityService;
     _addressService        = addressService;
     _feeScheduleService    = feeScheduleService;
 }
 public CompanyBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _company_repo             = _data_repository_factory.GetDataRepository <ICompanyRepository>();
     _comp_es                  = _entity_service_factory.GetEntityService <ICompanyEntityService>();
     _pers_es                  = _entity_service_factory.GetEntityService <IPersonEntityService>();
     _entity_attrib_be         = _business_engine_factory.GetBusinessEngine <IEntityAttributeBusinessEngine>();
     _person_respository       = _data_repository_factory.GetDataRepository <IPersonRepository>();
     _coa_be                   = _business_engine_factory.GetBusinessEngine <IChartOfAccountBusinessEngine>();
     _address_be               = _business_engine_factory.GetBusinessEngine <IAddressBusinessEngine>();
     _entity_person_repository = _data_repository_factory.GetDataRepository <IEntityPersonRepository>();
 }
 public CompanyManager(ICompanyRepository companyRepository, ICompanyEntityService companyEntityService)
 {
     _companyRepository    = companyRepository;
     _companyEntityService = companyEntityService;
 }