コード例 #1
0
ファイル: GlobalModuleFeatures.cs プロジェクト: zjc-china/abp
 protected GlobalModuleFeatures(
     [NotNull] GlobalFeatureManager featureManager)
 {
     FeatureManager = Check.NotNull(featureManager, nameof(featureManager));
     AllFeatures    = new GlobalFeatureDictionary();
 }
コード例 #2
0
 protected GlobalModuleFeatures(
     GlobalFeatureManager featureManager)
 {
     FeatureManager = featureManager;
     AllFeatures    = new GlobalFeatureDictionary();
 }