Пример #1
0
 public PackageHistoryService(ITenantPersistenceService tenantPersistenceService, IPackageHistoryRepository packageHistoryRepository, IFranchiseeTenantRepository franchiseeTenantRepository,
                              IBusinessRuleSet <PackageHistory> businessRuleSet = null)
     : base(packageHistoryRepository, packageHistoryRepository, tenantPersistenceService, businessRuleSet)
 {
     _packageHistoryRepository   = packageHistoryRepository;
     _franchiseeTenantRepository = franchiseeTenantRepository;
 }
Пример #2
0
 public FranchiseeConfigurationService(ITenantPersistenceService tenantPersistenceService,
                                       IFranchiseeConfigurationRepository franchiseeConfigurationRepository, IFranchiseeTenantRepository franchiseeTenantRepository, IFranchiseeTenantService franchiseeTenantService,
                                       IBusinessRuleSet <FranchiseeConfiguration> businessRuleSet = null)
     : base(franchiseeConfigurationRepository, franchiseeConfigurationRepository, tenantPersistenceService, businessRuleSet)
 {
     _franchiseeConfigurationRepository = franchiseeConfigurationRepository;
     _franchiseeTenantRepository        = franchiseeTenantRepository;
     _franchiseeTenantService           = franchiseeTenantService;
 }
Пример #3
0
 public FranchiseeRule(IFranchiseeTenantRepository franchiseeTenantRepository)
 {
     _franchiseeTenantRepository = franchiseeTenantRepository;
 }
Пример #4
0
 public EntityFrameworkPackageHistoryRepository(ITenantPersistenceService persistenceService, IFranchiseeTenantRepository franchiseeTenantRepository)
     : base(persistenceService)
 {
 }