private void GetEntityFromService(DTO.ModuleFeatureStepActionType actionType)
        {
            SelectedFeature.RestoreSelectedSearchGroup();
            int searchGroupId = _selectedEntity.OwningSearchGroupId;
            int entityId      = _selectedEntity.Id;

            //TODO: update client services method to take actionType parameter.
            //var response = _analyticDisplayServices.LoadAnalytic(sourceAnalytic, entityId, searchGroupId, (int)actionType);
        }
예제 #2
0
 public ModuleFeatureStepAction(
     string name,
     string parentName,
     string title,
     short sort,
     ENT.ModuleFeatureStepActionType type
     )
 {
     Name       = name;
     ParentName = parentName;
     Title      = title;
     Sort       = sort;
     Type       = type;
 }