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