예제 #1
0
 public TransactionTarget(Feature feature) : base(feature)
 {
 }
예제 #2
0
 public AccountIndexContainerBase(Feature feature, FeatureAccount featureAccount) : base(feature, featureAccount)
 {
 }
예제 #3
0
 public TransactionTargetValidator(Feature feature, IFeatureChain currentChain) : base(feature, currentChain)
 {
     MaxReceivers = currentChain.GetIntOption(FeatureId, TransactionTargetFeature.MaxReceiversOption, 8);
 }
예제 #4
0
 public TransactionTargetChainHandler(IFeatureChain currentChain, Feature feature) : base(currentChain, feature)
 {
 }
예제 #5
0
 public FanQueryHandler(Feature feature, IFeatureChain featureChain) : base(feature, featureChain)
 {
 }
예제 #6
0
 public TransactionTargetQueryHandler(Feature feature, IFeatureChain featureChain) : base(feature, featureChain)
 {
     _chainHandler = featureChain.GetFeatureChainHandler <TransactionTargetChainHandler>(feature.FeatureId);
 }
예제 #7
0
 public FanChainHandler(IFeatureChain currentChain, Feature feature) : base(currentChain, feature)
 {
 }
예제 #8
0
 public GroupAdministrationValidator(Feature feature, IFeatureChain currentChain) : base(feature, currentChain)
 {
 }
예제 #9
0
 internal GroupAdministration(Feature feature) : base(feature)
 {
 }
예제 #10
0
 public FanContainer(Feature feature, FeatureAccount featureAccount) : base(feature, featureAccount)
 {
     LastFansTransactionInfo  = LastTransactionInfo.Empty;
     LastFanOfTransactionInfo = LastTransactionInfo.Empty;
 }
예제 #11
0
 public GroupAdministrationContainer(Unpacker unpacker, ushort size, Feature feature, FeatureAccount featureAccount) : base(unpacker, size, feature, featureAccount)
 {
     unpacker.Unpack(_groups);
 }
예제 #12
0
 public GroupAdministrationContainer(Feature feature, FeatureAccount featureAccount) : base(feature, featureAccount)
 {
 }
예제 #13
0
 public GroupAdministrationChainHandler(IFeatureChain currentChain, Feature feature) : base(currentChain, feature)
 {
 }
예제 #14
0
 public AccountIndexBase(Feature feature) : base(feature)
 {
 }
예제 #15
0
#pragma warning disable IDE0051 // Remove unused private members
        internal Fan(Feature feature) : base(feature)
        {
        }
예제 #16
0
 public AccountIndexQueryHandlerBase(Feature feature, IFeatureChain currentChain) : base(feature, currentChain)
 {
 }
예제 #17
0
 public GroupAdministrationQueryHandler(Feature feature, IFeatureChain currentChain) : base(feature, currentChain)
 {
     _handler = currentChain.GetFeatureChainHandler <GroupAdministrationChainHandler>(FeatureId);
 }