public resultType DoStrategySpecificStuff(inputype data)
 {
     //TODO: Implement
     throw new NotImplementedException();
 }
        public resultType DoStuff(inputype data)
        {
            var result = strategy.DoStrategySpecificStuff(data);

            return(result);
        }