Beispiel #1
0
 public TieuChiThamDinhAppService(
     IRepository <TieuChiThamDinh> tieuChiThamDinhRepos,
     IRepository <LoaiBienBanThamDinh> loaiBienBanRepos,
     ICommonLookupAppService commonLookupService)
 {
     _tieuChiThamDinhRepos = tieuChiThamDinhRepos;
     _loaiBienBanRepos     = loaiBienBanRepos;
     _commonLookupService  = commonLookupService;
 }
 public TenantDetailsViewModel(
     ITenantAppService tenantAppService,
     ICommonLookupAppService commonLookupAppService,
     IPermissionService permissionService)
 {
     this.tenantAppService       = tenantAppService;
     this.permissionService      = permissionService;
     this.commonLookupAppService = commonLookupAppService;
 }
Beispiel #3
0
 public TenantsController(
     ITenantAppService tenantAppService,
     ICommonLookupAppService lookupAppService,
     TenantManager tenantManager)
 {
     _tenantAppService = tenantAppService;
     _lookupAppService = lookupAppService;
     _tenantManager    = tenantManager;
 }
Beispiel #4
0
 public TenantsController(
     ITenantAppService tenantAppService,
     ICommonLookupAppService lookupAppService, 
     TenantManager tenantManager)
 {
     _tenantAppService = tenantAppService;
     _lookupAppService = lookupAppService;
     _tenantManager = tenantManager;
 }
Beispiel #5
0
 public TenantsController(
     ITenantAppService tenantAppService,
     TenantManager tenantManager,
     IEditionAppService editionAppService,
     ICommonLookupAppService commonLookupAppService)
 {
     _tenantAppService       = tenantAppService;
     _tenantManager          = tenantManager;
     _editionAppService      = editionAppService;
     _commonLookupAppService = commonLookupAppService;
 }
Beispiel #6
0
        public EditionDetailsViewModel(
            IEditionAppService appService,
            ICommonLookupAppService commonLookupAppService)
        {
            this.appService             = appService;
            this.commonLookupAppService = commonLookupAppService;

            Model    = new EditionCreateModel();
            Features = new ObservableCollection <FlatFeatureModel>();
            Editions = new ObservableCollection <SubscribableEditionComboboxItemDto>();
        }
Beispiel #7
0
 public TenantsController(
     ITenantAppService tenantAppService,
     TenantManager tenantManager,
     IEditionAppService editionAppService,
     ICommonLookupAppService commonLookupAppService,
     IPasswordComplexitySettingStore passwordComplexitySettingStore)
 {
     _tenantAppService               = tenantAppService;
     _tenantManager                  = tenantManager;
     _editionAppService              = editionAppService;
     _commonLookupAppService         = commonLookupAppService;
     _passwordComplexitySettingStore = passwordComplexitySettingStore;
 }
Beispiel #8
0
        public CommonLookupAppService_Tests()
        {
            LoginAsHostAdmin();

            _commonLookupAppService = Resolve <ICommonLookupAppService>();
        }