namespace Demo.Features;
public interface IFeatureWrapper
{
void ExecuteAll();
void Execute(string name);
}