Exemple #1
0
 public ModuleFeature(
     string name,
     string title,
     short sort,
     ENT.ModuleFeatureType type,
     ENT.ModuleFeatureStepType landingStepType,
     ENT.ModuleFeatureStepType actionStepType
     )
 {
     Name            = name;
     Title           = title;
     Sort            = sort;
     Type            = type;
     LandingStepType = landingStepType;
     ActionStepType  = actionStepType;
 }
Exemple #2
0
 public ModuleFeature(
     string name,
     string title,
     short sort,
     ENT.ModuleFeatureType type,
     ENT.ModuleFeatureStepType landingStepType,
     ENT.ModuleFeatureStepType actionStepType,
     List <ModuleFeatureStep> steps,
     List <FeatureSearchGroup> searchGroups
     )
 {
     Name            = name;
     Title           = title;
     Sort            = sort;
     Type            = type;
     LandingStepType = landingStepType;
     ActionStepType  = actionStepType;
     Steps           = steps;
     SearchGroups    = searchGroups;
 }