public CommentBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact) //
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _comment_repo = _data_repository_factory.GetDataRepository <ICommentRepository>();
     _comment_es   = _entity_service_factory.GetEntityService <ICommentEntityService>();
 }
 public AddressPostalBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _address_postal_repo = _data_repository_factory.GetDataRepository <IAddressPostalRepository>();
     _addr_postal_es      = _entity_service_factory.GetEntityService <IAddressPostalEntityService>();
 }
 public OrderBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _order_header_repo    = _data_repository_factory.GetDataRepository <IOrderHeaderRepository>();
     _order_item_repo      = _data_repository_factory.GetDataRepository <IOrderItemRepository>();
     _comment_be           = _business_engine_factory.GetBusinessEngine <ICommentBusinessEngine>();
     _employee_be          = _business_engine_factory.GetBusinessEngine <IEmployeeBusinessEngine>();
     _address_be           = _business_engine_factory.GetBusinessEngine <IAddressBusinessEngine>();
     _product_be           = _business_engine_factory.GetBusinessEngine <IProductBusinessEngine>();
     _account_be           = _business_engine_factory.GetBusinessEngine <IAccountBusinessEngine>();
     _order_status_be      = _business_engine_factory.GetBusinessEngine <IOrderStatusBusinessEngine>();
     _order_item_status_be = _business_engine_factory.GetBusinessEngine <IOrderItemStatusBusinessEngine>();
     _order_se             = _entity_service_factory.GetEntityService <IOrderEntityService>();
     _order_item_se        = _entity_service_factory.GetEntityService <IOrderItemEntityService>();
 }
 public LedgerBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
 }
Example #5
0
 public OrderItemStatusBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache                = cache;
     _order_status_repo    = _data_repository_factory.GetDataRepository <IOrderStatusRepository>();
     _order_item_status_es = _entity_service_factory.GetEntityService <IOrderItemStatusEntityService>();
 }
Example #6
0
 public ChartOfAccountBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _chart_of_accounts_repo = _data_repository_factory.GetDataRepository <IChartOfAccountsRepository>();
     _chart_of_accounts_es   = _entity_service_factory.GetEntityService <IChartOfAccountEntityService>();
 }
Example #7
0
 public FeeScheduleBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _fee_schedule_repo = _data_repository_factory.GetDataRepository <IFeeScheduleRepository>();
     _fee_sched_es      = _entity_service_factory.GetEntityService <IFeeScheduleEntityService>();
 }
Example #8
0
 public AddressService(IEntityServiceFactory entityServiceFactory)
 {
 }
 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 EngineBase(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
 {
     _data_repository_factory = data_repo_fact;
     _business_engine_factory = bus_eng_fact;
     _entity_service_factory  = ent_serv_fact;
 }
 public ProductTypeBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache            = cache;
     _report_prod_type = _data_repository_factory.GetDataRepository <IProductTypeRepository>();
     _prod_es          = _entity_service_factory.GetEntityService <IProductTypeEntityService>();
     GetTypes();
 }
Example #12
0
 public AddressBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _address_repo    = _data_repository_factory.GetDataRepository <IAddressRepository>();
     _address_type_be = _business_engine_factory.GetBusinessEngine <IAddressTypeBusinessEngine>();
     _addr_es         = _entity_service_factory.GetEntityService <IAddressEntityService>();
 }
 public AuditLogBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _audit_log_repo = _data_repository_factory.GetDataRepository <IAuditLogRepository>();
     _audit_log_es   = _entity_service_factory.GetEntityService <IAuditLogEntityService>();
 }
Example #14
0
 public ProductBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _product_repo = _data_repository_factory.GetDataRepository <IProductRepository>();
     _attrib_be    = _business_engine_factory.GetBusinessEngine <IEntityAttributeBusinessEngine>();
     _prod_type_be = _business_engine_factory.GetBusinessEngine <IProductTypeBusinessEngine>();
     _prod_es      = _entity_service_factory.GetEntityService <IProductEntityService>();
 }
Example #15
0
 public InvoiceBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _invoice_repo      = _data_repository_factory.GetDataRepository <IInvoiceRepository>();
     _invoice_item_repo = _data_repository_factory.GetDataRepository <IInvoiceItemRepository>();
     _comment_be        = _business_engine_factory.GetBusinessEngine <ICommentBusinessEngine>();
     _employee_be       = _business_engine_factory.GetBusinessEngine <IEmployeeBusinessEngine>();
     _address_be        = _business_engine_factory.GetBusinessEngine <IAddressBusinessEngine>();
     _product_be        = _business_engine_factory.GetBusinessEngine <IProductBusinessEngine>();
     _account_be        = _business_engine_factory.GetBusinessEngine <IAccountBusinessEngine>();
     _invoice_se        = _entity_service_factory.GetEntityService <IInvoiceEntityService>();
     _invoice_item_se   = _entity_service_factory.GetEntityService <IInvoiceItemEntityService>();
 }
 public AttributeTypeBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache          = cache;
     _repo_attr_type = _data_repository_factory.GetDataRepository <IAttributeTypeRepository>();
     _attr_type_es   = _entity_service_factory.GetEntityService <IAttributeTypeEntityService>();
     GetTypes();
 }
Example #17
0
 public CommentTypeBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache             = cache;
     _repo_comment_type = _data_repository_factory.GetDataRepository <ICommentTypeRepository>();
     _comment_es        = _entity_service_factory.GetEntityService <ICommentTypeEntityService>();
 }
Example #18
0
 public EntityAttributeBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _attribute_repo    = _data_repository_factory.GetDataRepository <IAttributeRepository>();
     _entity_type_be    = _business_engine_factory.GetBusinessEngine <IEntityTypeBusinessEngine>();
     _attribute_type_be = _business_engine_factory.GetBusinessEngine <IAttributeTypeBusinessEngine>();
     _ent_att_es        = _entity_service_factory.GetEntityService <IEntityAttributeEntityService>();
 }
 public AccountEmployeeBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _entity_person_repo = _data_repository_factory.GetDataRepository <IEntityPersonRepository>();
     _person_repo        = _data_repository_factory.GetDataRepository <IPersonRepository>();
     _acct_es            = _entity_service_factory.GetEntityService <IAccountEntityService>();
     _pers_es            = _entity_service_factory.GetEntityService <IPersonEntityService>();
 }
Example #20
0
 public AccountBusinessEngine(IDataRepositoryFactory data_repo_fact, IBusinessEngineFactory bus_eng_fact, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, bus_eng_fact, ent_serv_fact)
 {
     _acct_repo           = _data_repository_factory.GetDataRepository <IAccountRepository>();
     _acct_es             = _entity_service_factory.GetEntityService <IAccountEntityService>();
     _account_type_be     = _business_engine_factory.GetBusinessEngine <IAccountTypeBusinessEngine>();
     _address_be          = _business_engine_factory.GetBusinessEngine <IAddressBusinessEngine>();
     _entity_attribute_be = _business_engine_factory.GetBusinessEngine <IEntityAttributeBusinessEngine>();
     _fee_schedule_be     = _business_engine_factory.GetBusinessEngine <IFeeScheduleBusinessEngine>();
     _account_employee_be = _business_engine_factory.GetBusinessEngine <IAccountEmployeeBusinessEngine>();
     _contact_be          = _business_engine_factory.GetBusinessEngine <IContactBusinessEngine>();
     _comment_be          = _business_engine_factory.GetBusinessEngine <ICommentBusinessEngine>();
 }
 public EntityTypeBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache         = cache;
     _repo_ent_type = _data_repository_factory.GetDataRepository <IEntityTypeRepository>();
     GetTypes();
 }