//private readonly ITenantRepository _tenantRepository;

        public LocationController(
            IHostingEnvironment env,
            IBusinessInformationService businessInformationService,
            IBusinessInformationQueryService businessInformationQueryService)
        {
            this._env = env;
            _businessInformationService      = businessInformationService;
            _businessInformationQueryService = businessInformationQueryService;
        }
Beispiel #2
0
 public TenantService(IEventPublisher eventPublisher,
                      IdentityApplicationService identityApplicationService,
                      ITenantAddressRepository tenantAddressRepository,
                      ITenantContactRepository tenantContactRepository,
                      IBusinessInformationService businessInformationService)
 {
     _eventPublisher             = eventPublisher;
     _identityApplicationService = identityApplicationService;
     _tenantAddressRepository    = tenantAddressRepository;
     _tenantContactRepository    = tenantContactRepository;
     _businessInformationService = businessInformationService;
 }
 public SiteController(IBusinessInformationService businessInformationService)
 {
     _businessInformationService = businessInformationService;
 }
Beispiel #4
0
 public TenantEventHandler(IBusinessInformationService businessInformationService)
 {
     _businessInformationService = businessInformationService;
 }
Beispiel #5
0
        //private readonly ITenantRepository _tenantRepository;

        public LocationController(IBusinessInformationService businessInformationService)
        {
            //_tenantRepository = tenantRepository;
            _businessInformationService = businessInformationService;
        }