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; }
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; }