9 lines
166 B
C#
9 lines
166 B
C#
|
using StrategyCake.Model;
|
||
|
|
||
|
namespace StrategyCake.Strategies;
|
||
|
|
||
|
public interface ICakeStrategy
|
||
|
{
|
||
|
List<Ingredient> GetIngredients();
|
||
|
List<string> GetMethod();
|
||
|
}
|